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 eb8f54e commit ac157d1Copy full SHA for ac157d1
.github/workflows/deploy-image.yml
@@ -55,6 +55,8 @@ jobs:
55
push: true
56
tags: ${{ steps.meta.outputs.tags }}
57
labels: ${{ steps.meta.outputs.labels }}
58
+ secrets: |
59
+ "sentry_auth_token=${{ secrets.SENTRY_AUTH_TOKEN }}"
60
build-args: |
61
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
62
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
Dockerfile
@@ -12,6 +12,9 @@ COPY . .
12
RUN npm run generate
13
RUN npm run build:production
14
15
+RUN --mount=type=secret,id=sentry_auth_token \
16
+ cat /run/secrets/sentry_auth_token
17
+
18
19
20
ARG SENTRY_VERSION
0 commit comments