From 640eb3293e6e2b95f675936c9f78f5086156db50 Mon Sep 17 00:00:00 2001 From: Lukas Reining Date: Fri, 6 Sep 2024 13:18:50 +0200 Subject: [PATCH] fix: do not run package publish twice Signed-off-by: Lukas Reining --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c9da3fb..58fbf3d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -45,4 +45,4 @@ jobs: if: ${{ steps.release.outputs.release_created }} env: NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} - run: npm publish --access public + run: npm run publish --access public