From 1dd9d1b1f08ff8b36d6a41ff54cd2fc52756c4f4 Mon Sep 17 00:00:00 2001 From: Charis Lam <26616127+charislam@users.noreply.github.com> Date: Fri, 13 Dec 2024 16:40:05 -0500 Subject: [PATCH] debug: publish workflow --- .github/workflows/publish.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) 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