We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ac8dae commit d525a09Copy full SHA for d525a09
.github/workflows/publish.yml
@@ -27,6 +27,8 @@ jobs:
27
28
# Set node/npm/yarn versions using volta, with optional overrides provided by the consumer
29
- uses: volta-cli/action@v4
30
+ with:
31
+ registry-url: https://registry.npmjs.org
32
33
# Install pnpm with exact version provided by consumer or fallback to latest
34
- name: Install PNPM
@@ -75,8 +77,8 @@ jobs:
75
77
76
78
- name: Publish
79
env:
- "GH_TOKEN": ${{ secrets.GITHUB_TOKEN }}
- "npm_config_//registry.npmjs.org/:_authToken": ${{ secrets.NPM_TOKEN }}
80
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
81
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
82
run: |
83
echo "Running pnpm lerna publish --yes"
84
pnpm lerna publish --yes
0 commit comments