Skip to content

Commit

Permalink
♻️ Fix syntax for accessing secrets in GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cermakjiri committed Nov 22, 2024
1 parent 8f8e421 commit 5f9e582
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ on:
- dev

env:
VERCEL_NAME_EXAMPLE_DEFAULT: ${ secrets.VERCEL_NAME_EXAMPLE_DEFAULT }}
VERCEL_NAME_EXAMPLE_UPGRADE: ${ secrets.VERCEL_NAME_EXAMPLE_UPGRADE }}
VERCEL_SCOPE: ${ secrets.VERCEL_SCOPE }}
VERCEL_TOKEN: ${ secrets.VERCEL_TOKEN }}
SENTRY_AUTH_TOKEN: ${ secrets.SENTRY_AUTH_TOKEN }}
VERCEL_NAME_EXAMPLE_DEFAULT: ${{ secrets.VERCEL_NAME_EXAMPLE_DEFAULT }}
VERCEL_NAME_EXAMPLE_UPGRADE: ${{ secrets.VERCEL_NAME_EXAMPLE_UPGRADE }}
VERCEL_SCOPE: ${{ secrets.VERCEL_SCOPE }}
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}

jobs:
default-example:
Expand Down

0 comments on commit 5f9e582

Please sign in to comment.