Skip to content

Commit

Permalink
debug: publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
charislam committed Dec 13, 2024
1 parent 9c25c0c commit aaef8d4
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,19 @@ jobs:
registry-url: "https://registry.npmjs.org"
scope: "supabase"

- name: Publish binary distrubutions
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
run: |
for tarball in npm-binary-distributions/*/*.tgz; do
npm publish --access public "$tarball"
done
# - name: Publish binary distrubutions
# env:
# NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
# run: |
# for tarball in npm-binary-distributions/*/*.tgz; do
# npm publish --access public "$tarball"
# done

- name: Publish Node package
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
run: |
for tarball in node-pkg/*.tgz; do
npm publish --access public "$tarball"
echo "Inspecting $tarball"
tar -tzf "$tarball"
done

0 comments on commit aaef8d4

Please sign in to comment.