Skip to content

Commit 39c21e3

Browse files
committed
Debugging for OIDC
1 parent 30789bb commit 39c21e3

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@ jobs:
2929
node-version: '22'
3030
registry-url: 'https://registry.npmjs.org'
3131
token: ${{ secrets.GITHUB_TOKEN }}
32+
33+
- name: Configure NPM for OIDC
34+
run: |
35+
cat > ~/.npmrc << EOF
36+
@crispthinking:registry=https://registry.npmjs.org/
37+
registry=https://registry.npmjs.org/
38+
EOF
3239
3340
- name: Set version from tag or input
3441
run: |
@@ -55,6 +62,9 @@ jobs:
5562
- run: |
5663
echo "Publishing version: $PACKAGE_VERSION"
5764
cat package.json | grep -A2 '"name"'
65+
echo "Checking npm config:"
66+
npm config get registry
67+
npm config get //registry.npmjs.org/:_authToken
5868
npm ci
5969
npm run codegen
6070
npm run build:release

0 commit comments

Comments
 (0)