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 906d9ff commit 1b663dcCopy full SHA for 1b663dc
1 file changed
.github/workflows/build.yaml
@@ -31,8 +31,6 @@ jobs:
31
with:
32
node-version: 24
33
cache: 'pnpm'
34
- registry-url: 'https://npm.pkg.github.com'
35
- scope: '@delta-comic'
36
37
- name: Install dependencies
38
run: pnpm install --frozen-lockfile
@@ -62,7 +60,9 @@ jobs:
62
60
if: steps.release-version.outputs.should_publish == 'true'
63
61
env:
64
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
65
- run: pnpm publish --registry=https://npm.pkg.github.com --no-git-checks
+ run: |
+ echo "//npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}" >> ~/.npmrc
+ pnpm publish --registry=https://npm.pkg.github.com --no-git-checks
66
67
- name: Create GitHub release
68
0 commit comments