We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 301e0d4 commit 94b8784Copy full SHA for 94b8784
.github/workflows/publish.yml
@@ -39,17 +39,17 @@ jobs:
39
registry-url: "https://registry.npmjs.org"
40
scope: "supabase"
41
42
+ # Ensure npm 11.5.1 or later is installed for trusted publishing support
43
+ - name: Update npm
44
+ run: npm install -g npm@latest
45
+
46
- name: Publish binary distrubutions
- env:
- NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
47
run: |
48
for tarball in ./npm-binary-distributions/*/*.tgz; do
49
npm publish --provenance --access public "$tarball"
50
done
51
52
- name: Publish Node package
53
54
for tarball in ./node-pkg/*.tgz; do
55
0 commit comments