We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 367c621 commit 523423eCopy full SHA for 523423e
.github/workflows/docker_build_deploy_v2.yml
@@ -68,13 +68,15 @@ jobs:
68
69
- name: Build and push Docker image to GAR
70
id: build-and-push
71
+ env:
72
+ TAGS: ${{ steps.meta.outputs.tags }}
73
uses: docker/build-push-action@v6
74
with:
75
context: .
76
# Push is true to push to GAR after build
77
push: true
78
# Tags generated by the metadata action (only GAR tag)
- tags: ${{ steps.meta.outputs.tags }}
79
+ tags: ${{ env.TAGS }}
80
# Pass build arguments
81
build-args: |
82
SENTRY_RELEASE=${{ github.sha }} # Use full SHA for Sentry release clarity
0 commit comments