From f934f2591a2ba8c28f1c8c18d36c05e9a829ee7e Mon Sep 17 00:00:00 2001 From: Elliot Voris Date: Wed, 8 Jan 2025 12:27:01 -0600 Subject: [PATCH] use yarn v3 publish command, allow publish workflow manually (#13) --- .github/workflows/npm_publish.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/npm_publish.yaml b/.github/workflows/npm_publish.yaml index 304bce8..a047759 100644 --- a/.github/workflows/npm_publish.yaml +++ b/.github/workflows/npm_publish.yaml @@ -1,6 +1,7 @@ name: npm publish on: + workflow_dispatch: release: types: [published] @@ -26,6 +27,6 @@ jobs: - name: Publish npm package to both places run: | - yarn publish --access public + yarn npm publish --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}