We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a72097e commit 55e3d69Copy full SHA for 55e3d69
1 file changed
.github/workflows/test-and-publish.yml
@@ -47,6 +47,7 @@ jobs:
47
directory: coverage
48
flags: nodejs-sdk
49
fail_ci_if_error: false
50
+ token: ${{ secrets.CODECOV_TOKEN }}
51
continue-on-error: true
52
53
publish:
@@ -86,5 +87,8 @@ jobs:
86
87
fi
88
echo "Version verified: $PACKAGE_VERSION"
89
90
+ - name: Clear npm auth token
91
+ run: npm config delete //registry.npmjs.org/:_authToken || true
92
+
93
- name: Publish to npm
- run: npm publish --provenance --access public
94
+ run: npm publish --provenance --access public
0 commit comments