We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e76828c commit 586c795Copy full SHA for 586c795
1 file changed
.github/workflows/publish.yml
@@ -38,6 +38,11 @@ jobs:
38
npm ci
39
npm run build
40
41
+ # See https://github.com/orgs/community/discussions/176761. `setup-node` was messing with
42
+ # node authentication. This breaks publishing unless we clear the token.
43
+ - name: Clear auth token for OIDC
44
+ run: echo "NODE_AUTH_TOKEN=" >> $GITHUB_ENV
45
+
46
# https://hackernoon.com/how-to-automatically-publish-your-npm-package-using-github-actions
47
# Here we actually use `npm version from-git`, but just never commit the version.
48
- name: Update package.json with release tag
0 commit comments