Skip to content

Commit 2954b8d

Browse files
committed
fix(ci): correct GITHUB_TOKEN syntax in release workflow
1 parent d998dfe commit 2954b8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ jobs:
5252
npx nx release --skip-publish
5353
npx nx release publish --excludeTaskDependencies
5454
env:
55-
GITHUB_TOKEN: $${{ steps.generate-token.outputs.token }}
55+
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}
5656
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
5757
NPM_CONFIG_PROVENANCE: true
5858

5959
- name: Release Publish Dry-Run
6060
if: ${{ !inputs.auto_publish }}
6161
run: npx nx release publish --excludeTaskDependencies --dry-run
6262
env:
63-
GITHUB_TOKEN: $${{ steps.generate-token.outputs.token }}
63+
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}
6464
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
6565
NPM_CONFIG_PROVENANCE: true

0 commit comments

Comments
 (0)