File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -329,8 +329,9 @@ jobs:
329329 CMS_ADMIN_HOST=${{ fromJSON('["pastaporto-", ""]')[github.ref == 'refs/heads/main'] }}admin.pycon.it
330330 CMS_HOSTNAME=${{ steps.vars.outputs.cms_hostname }}
331331 CONFERENCE_CODE=${{ steps.vars.outputs.conference_code }}
332- SENTRY_AUTH_TOKEN=${{ steps.vars.outputs.sentry_auth_token }}
333332 GIT_HASH=${{ steps.git.outputs.githash }}
333+ secrets : |
334+ "sentry_auth_token=${{ steps.vars.outputs.sentry_auth_token }}"
334335
335336 deploy-fe :
336337 runs-on : ubuntu-24.04
Original file line number Diff line number Diff line change @@ -24,7 +24,9 @@ WORKDIR /app
2424COPY --from=deps /app/node_modules ./node_modules
2525COPY . .
2626
27- RUN corepack enable pnpm && pnpm run build
27+ RUN corepack enable pnpm
28+ RUN --mount=type=secret,id=sentry_auth_token,env=SENTRY_AUTH_TOKEN \
29+ pnpm run build
2830
2931FROM base AS runner
3032WORKDIR /app
You can’t perform that action at this time.
0 commit comments