Skip to content

Commit 60278c1

Browse files
I will never accept defeeat...
1 parent 8e8bc27 commit 60278c1

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ on:
1313
permissions:
1414
contents: read
1515
id-token: write
16-
packages: write
1716

1817
jobs:
1918
build:
@@ -41,10 +40,16 @@ jobs:
4140
- name: Compile packages and examples
4241
run: yarn build
4342

43+
- name: OIDC debug
44+
if: github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/master')
45+
run: |
46+
echo "GITHUB_REPOSITORY=$GITHUB_REPOSITORY"
47+
echo "ACTIONS_ID_TOKEN_REQUEST_URL=${ACTIONS_ID_TOKEN_REQUEST_URL:-}"
48+
4449
- name: Publish packages
4550
if: github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/master')
4651
env:
47-
FORCE_PUBLISH: 'true'
48-
NODE_AUTH_TOKEN: ''
52+
FORCE_PUBLISH: "true"
53+
NODE_AUTH_TOKEN: ""
4954
run: |
5055
node scripts/publish-npm.mjs

0 commit comments

Comments
 (0)