We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 72895cf + 5dbca1d commit 4abcad1Copy full SHA for 4abcad1
.github/workflows/release.yml
@@ -33,6 +33,7 @@ jobs:
33
with:
34
node-version: 20.x
35
registry-url: "https://registry.npmjs.org"
36
+ token: ""
37
38
- name: Ensure npm 11.5.1+ for trusted publishing
39
run: npm install -g npm@^11.5.1
@@ -47,4 +48,7 @@ jobs:
47
48
# This expects you to have a script called release which does a build for your packages and calls changeset publish
49
publish: yarn release
50
env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
51
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
52
+ # we use trusted publishing and setup-node will set these incorrectly. Unset if we ever use RO_TOKEN
53
+ NODE_AUTH_TOKEN: ""
54
+ NPM_TOKEN: ""
security.yaml
@@ -0,0 +1 @@
1
+codeowner_approvals: false
0 commit comments