Skip to content

Update README.md

Update README.md #12

name: Build and Push Docker Images
on:
push:
branches:
- main
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository_owner }}
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.WRITE_PACKAGE_TOKEN }}
- name: Checkout the Gitops repository
uses: actions/checkout@v4
with:
repository: fiaisis/gitops
token: ${{ secrets.GITOPS_STAGING_EDIT_TOKEN }}
- name: Build and push file watcher Docker image
id: file_watcher_build
uses: docker/build-push-action@v5
with:
file: ./container/file_watcher.D
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/filewatcher:${{ github.sha }}
- name: Remove sha256 from the builds digest
id: remove_sha256_watcher
run: |
DIGEST=${{ steps.file_watcher_build.outputs.digest }}
FILTERED_DIGEST=${DIGEST#sha256:}
echo "::set-output name=digest::$FILTERED_DIGEST"
- name: Edit the YAML file-watcher-operator.yml file for staging for file watcher
uses: mikefarah/[email protected]
with:
cmd: yq e -i '.spec.template.spec.containers[] |= (select(.name == "file-watcher-operator") | .env[] |= select(.name == "FILE_WATCHER_SHA256").value = "${{ steps.remove_sha256_watcher.outputs.digest }}")' './components/file-watcher-operator/envs/staging/file-watcher-operator.yml'
- name: Build and push file watcher operator Docker image
id: file_watcher_operator_build
uses: docker/build-push-action@v5
with:
file: ./container/file_watcher_operator.D
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/filewatcher-operator:${{ github.sha }}
- name: Edit the YAML file-watcher-operator.yml file for staging for file watcher operator
uses: mikefarah/[email protected]
with:
cmd: yq e -i '.spec.template.spec.containers[] |= select(.name == "file-watcher-operator").image = "ghcr.io/fiaisis/filewatcher-operator@${{ steps.file_watcher_operator_build.outputs.digest }}"' './components/file-watcher-operator/envs/staging/file-watcher-operator.yml'
- name: Commit and push changes for file watcher operator
continue-on-error: true
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git commit -am "[CD] Update file-watcher/operator with this commit ${{ github.event.head_commit.url}}"
git push