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 93a5fac commit 12e2254Copy full SHA for 12e2254
.github/workflows/npm.yml
@@ -15,14 +15,19 @@ jobs:
15
uses: actions/setup-node@v4
16
with:
17
node-version: 'lts/*'
18
- registry-url: 'https://registry.npmjs.org'
+ registry-url: 'https://registry.npmjs.org/'
19
scope: '@list-kr'
20
- name: Checkout
21
uses: actions/checkout@v4
22
- name: Install dependencies
23
run: npm i
24
- name: Build
25
run: npm run build
26
+ - name: Debugging log
27
+ run: |
28
+ echo "registry => $(npm config get registry)"
29
+ echo "@list-kr reg => $(npm config get @list-kr:registry || true)"
30
+ test -f .npmrc && echo ".npmrc =====" && cat .npmrc || true
31
- name : Publish to npm
32
run: npm publish --access public --provenance
33
purge:
0 commit comments