Skip to content

Commit dbbe704

Browse files
committed
chore: investigating canary issues
1 parent b0fafc8 commit dbbe704

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/canary.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ jobs:
2727
with:
2828
node-version: 24
2929
cache: 'pnpm'
30-
registry-url: 'https://registry.npmjs.org'
3130

3231
- name: Verify npm version
3332
run: npm -v
@@ -46,8 +45,17 @@ jobs:
4645
cd ../eslint-plugin && npm version $CANARY_VERSION --no-git-tag-version
4746
cd ../test-renderer && npm version $CANARY_VERSION --no-git-tag-version
4847
48+
- name: Verify npm auth context
49+
run: |
50+
echo "NODE_AUTH_TOKEN set? ${NODE_AUTH_TOKEN:+yes}"
51+
echo "NPM_CONFIG_USERCONFIG=$NPM_CONFIG_USERCONFIG"
52+
env:
53+
NODE_AUTH_TOKEN: ''
54+
4955
- name: Publish to npm
5056
run: |
5157
pnpm --filter @react-three/fiber publish --tag canary --no-git-checks --provenance
5258
pnpm --filter @react-three/eslint-plugin publish --tag canary --no-git-checks --provenance
5359
pnpm --filter @react-three/test-renderer publish --tag canary --no-git-checks --provenance
60+
env:
61+
NODE_AUTH_TOKEN: ''

0 commit comments

Comments
 (0)