From b6eeae428a75507557237decc4dc5cb6a18cc23a Mon Sep 17 00:00:00 2001 From: AJ Date: Fri, 1 Mar 2024 08:23:33 -0500 Subject: [PATCH] feat: add a build job to push the container image to the repo registry --- .github/workflows/build-push-ghcr.yaml | 48 ++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 .github/workflows/build-push-ghcr.yaml diff --git a/.github/workflows/build-push-ghcr.yaml b/.github/workflows/build-push-ghcr.yaml new file mode 100644 index 0000000..4890f1a --- /dev/null +++ b/.github/workflows/build-push-ghcr.yaml @@ -0,0 +1,48 @@ +name: Build multi-platform image and push to ghcr.io + +on: + push: + branches: + - "**" + tags: + - "v*.*.*" + pull_request: + branches: + - "master" + +jobs: + docker: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Docker meta + id: meta + uses: docker/metadata-action@v5 + with: + images: ghcr.io/${{ github.repository }} + tags: | + type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'master') }} + type=ref,event=branch + type=ref,event=pr + type=semver,pattern={{version}} + type=semver,pattern={{major}}.{{minor}} + type=semver,pattern={{major}} + type=sha + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Login to GHCR + if: github.event_name != 'pull_request' + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Build and push + uses: docker/build-push-action@v5 + with: + context: . + platforms: linux/amd64,linux/arm64 + push: ${{ github.event_name != 'pull_request' }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }}