diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0c3001f..7f011d7 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -39,18 +39,18 @@ 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" + for tarball in ./node-pkg/*.tgz; do + echo "Inspecting $tarball" done