From 197373069dd4d6513a3d6e2c24ebf65908f071bb Mon Sep 17 00:00:00 2001 From: Dennis Kigen Date: Sat, 30 Sep 2023 21:54:36 +0300 Subject: [PATCH] (chore) Try using npm publish for the pre-release step instead --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f24d37f2..6e0564f7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -83,7 +83,7 @@ jobs: - run: git add . && git commit -m "Prerelease version" --no-verify - name: Publish pre-release - run: yarn config set npmAlwaysAuth true && yarn config set npmAuthToken "${NODE_AUTH_TOKEN}" && yarn npm publish --access public --tag next + run: yarn config set npmAlwaysAuth true && yarn config set npmAuthToken "${NODE_AUTH_TOKEN}" && npm publish --access public --tag next env: NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}