From e97daf59428045386f03e9cf16485ebed014db2d Mon Sep 17 00:00:00 2001 From: Emanuele Fumagalli Date: Sun, 6 Aug 2023 15:05:56 +0100 Subject: [PATCH] different action for release --- .github/workflows/ghcr-build-push.yml | 8 ---- .github/workflows/ghcr-build-release.yml | 57 ++++++++++++++++++++++++ 2 files changed, 57 insertions(+), 8 deletions(-) create mode 100644 .github/workflows/ghcr-build-release.yml diff --git a/.github/workflows/ghcr-build-push.yml b/.github/workflows/ghcr-build-push.yml index d778dc9..18bf1df 100644 --- a/.github/workflows/ghcr-build-push.yml +++ b/.github/workflows/ghcr-build-push.yml @@ -5,8 +5,6 @@ on: push: branches: - main - release: - types: [published] env: REGISTRY: ghcr.io @@ -32,12 +30,6 @@ jobs: run: | echo "VERSION_NUMBER=$((1000+GITHUB_RUN_NUMBER))" >> $GITHUB_ENV - - name: Release version - if: ${{ github.event_name == 'release' }} - run: echo ${{ env.VERSION_NUMBER }} - env: - VERSION_NUMBER: ${{ github.event.release.tag_name }} - - name: Check out the repo uses: actions/checkout@v3 diff --git a/.github/workflows/ghcr-build-release.yml b/.github/workflows/ghcr-build-release.yml new file mode 100644 index 0000000..44a0934 --- /dev/null +++ b/.github/workflows/ghcr-build-release.yml @@ -0,0 +1,57 @@ +name: Publish Docker image to GHCR + +on: + release: + types: [published] + +env: + REGISTRY: ghcr.io + IMAGE_NAME: ${{ github.repository }} + VERSION_NUMBER: latest + +jobs: + push_to_registry: + name: Push Docker image to GH registry + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + id-token: write + steps: + - name: Dump GitHub context + env: + GITHUB_CONTEXT: ${{ toJson(github) }} + run: | + echo "$GITHUB_CONTEXT" + + - name: Check out the repo + uses: actions/checkout@v3 + + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + + - name: Log in to GitHub container registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@v4 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + + - name: Build and push Docker image + uses: docker/build-push-action@v4 + with: + context: . + file: ./Dockerfile + push: true + #platforms: linux/amd64,linux/arm/v7,linux/arm64 + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }}