work on pr_afn_k8s #24
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker Image admin | |
on: | |
push: | |
branches: ['**'] | |
paths: | |
- 'admin/**' | |
- '.github/workflows/docker-admin.yaml' | |
workflow_dispatch: | |
branches: ['**'] | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
outputs: | |
img_tag: ${{ steps.preserve_img_tag.outputs.img_tag }} | |
steps: | |
- uses: actions/checkout@master | |
- name: Setup VARS.js | |
run: 'printf "$ADMIN_VARS" > admin/js/VARS.js' | |
env: | |
ADMIN_VARS: ${{secrets.ADMIN_VARS}} | |
- name: Compute image tag | |
run: | | |
echo "IMG_TAG=$(echo ${GITHUB_SHA} | sed -E 's/refs\/(heads|tags)\///g' | sed -e 's/\//-/g')" >> $GITHUB_ENV | |
- name: Preserve image tag | |
id: preserve_img_tag | |
run: | | |
echo "img_tag=${{ env.IMG_TAG }}" >> $GITHUB_OUTPUT | |
- name: Kaniko build | |
uses: julsemaan/action-kaniko@master | |
with: | |
registry: ghcr.io | |
image: julsemaan/anyfile-notepad/admin | |
tag: ${{ env.IMG_TAG }} | |
tag_with_latest: false | |
password: ${{ secrets.GITHUB_TOKEN }} | |
path: admin/ | |
extra_args: >- | |
--push-retry 5 | |
pr_afn_k8s: | |
needs: docker | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
with: | |
repository: julsemaan/afn-k8s | |
token: ${{ secrets.GHA_REPO_TOKEN }} | |
- name: Get IMG_TAG | |
run: | | |
echo $IMG_TAG | |
env: | |
IMG_TAG: ${{needs.docker.outputs.img_tag}} | |
- uses: frenck/action-setup-yq@v1 | |
- name: Stage changes in new branch | |
env: | |
IMG_TAG: ${{needs.docker.outputs.img_tag}} | |
GH_TOKEN: ${{ secrets.GHA_REPO_TOKEN }} | |
CHANGE_TYPE: admin | |
run: | | |
BRANCH_ID=`date "+%Y%m%d"` | |
git checkout -b tmp/$BRANCH_ID | |
yq -i '.lb.'$CHANGE_TYPE'.image.tag = "'$IMG_TAG'"' charts/afn/values.yaml | |
git config --global user.email "devnull@semaan.ca" | |
git config --global user.name "Semaan Bot" | |
git commit --allow-empty -a -m "bump $CHANGE_TYPE to $IMG_TAG" | |
git push origin HEAD | |
gh pr create -B main -H tmp/$BRANCH_ID --title "Update images $BRANCH_ID" --body 'Created by Github action' | |