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 24fb536 commit 562db65Copy full SHA for 562db65
.github/workflows/packages_publishing.yml
@@ -58,7 +58,11 @@ jobs:
58
${{ runner.os }}-pnpm-store
59
60
- name: Install dependencies
61
- run: pnpm install --frozen-lockfile --config.optional=true
+ env:
62
+ NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
63
+ run: |
64
+ pnpm set //npm.pkg.github.com/:_authToken="$NODE_AUTH_TOKEN";
65
+ pnpm install --frozen-lockfile --config.optional=true;
66
67
- name: Set timestamp version
68
if: ${{ env.SET_TIMESTAMP_VERSION == 'true' }}
0 commit comments