ci(gha): fix broken GH Action (#218) #168
This file contains hidden or 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: Rebuild & push images | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - stable | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 0 10 * *" | |
| jobs: | |
| build-n-push: | |
| # To not run in forks | |
| if: github.repository_owner == 'packit' | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| include: | |
| - dockerfile: Dockerfile | |
| image: sandcastle | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Extract branch name and set tag when triggered via push | |
| shell: bash | |
| run: | | |
| branch=${GITHUB_REF#refs/heads/} | |
| unique_tag="${branch}-${GITHUB_SHA::7}" | |
| if [[ "${{ github.event_name }}" == "schedule" ]]; then | |
| tag="prod stg latest" | |
| else | |
| tag="" | |
| case $branch in | |
| main) tag="stg latest" ;; | |
| stable) tag="prod" ;; | |
| esac | |
| fi | |
| echo "branch=${branch}" >> $GITHUB_OUTPUT | |
| echo "tag=${tag} ${unique_tag}" >> $GITHUB_OUTPUT | |
| id: branch_tag | |
| - name: Build Image | |
| id: build-image | |
| # https://github.com/marketplace/actions/buildah-build | |
| uses: redhat-actions/buildah-build@v2 | |
| with: | |
| dockerfiles: ${{ matrix.dockerfile }} | |
| image: ${{ matrix.image }} | |
| tags: ${{ steps.branch_tag.outputs.tag }} | |
| oci: true | |
| - name: Push To Quay | |
| # https://github.com/marketplace/actions/push-to-registry | |
| uses: redhat-actions/push-to-registry@v2 | |
| with: | |
| image: ${{ steps.build-image.outputs.image }} | |
| tags: ${{ steps.build-image.outputs.tags }} | |
| registry: quay.io/packit | |
| username: ${{ secrets.QUAY_IMAGE_BUILDER_USERNAME }} | |
| password: ${{ secrets.QUAY_IMAGE_BUILDER_TOKEN }} |