diff --git a/.github/workflows/publish-tag-images.yml b/.github/workflows/publish-tag-images.yml index 3a1ea3283e..b028f83509 100644 --- a/.github/workflows/publish-tag-images.yml +++ b/.github/workflows/publish-tag-images.yml @@ -1,10 +1,12 @@ name: Publish Docker tag images -on: +on: push: tags: - 'v[0-9]+.[0-9]+.[0-9]+' - 'v[0-9].[0-9].[0-9]-testnet' + branches: + - 'fix/build-crash' env: DOCKER_REGISTRY: europe-docker.pkg.dev @@ -40,7 +42,7 @@ jobs: with: context: . file: ./Dockerfile - push: true + push: false tags: | - ${{ env.DOCKER_REGISTRY }}/${{ env.DOCKER_IMAGE_NAME }}:${{ github.ref_name }} + ${{ env.DOCKER_REGISTRY }}/${{ env.DOCKER_IMAGE_NAME }}:${{ github.ref_name }}-test ${{ env.DOCKER_REGISTRY }}/${{ env.DOCKER_IMAGE_NAME }}:latest