From f44d0c3cb2859af6b87d33f5f6e16673db77ec52 Mon Sep 17 00:00:00 2001 From: David Rogers Date: Thu, 17 Oct 2024 21:08:11 -0700 Subject: [PATCH] feat: remove dry run from npm publish (#231) (#234) --- .github/workflows/release-please.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 8da8e8d0..28676f0d 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -42,6 +42,6 @@ jobs: - name: Publish to NPM if: ${{ steps.release.outputs.release_created }} - run: npm publish --dry-run + run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.DATABIOSPHERE_FINDABLE_UI_NPM_PUBLISH_TOKEN }} # Ensure this token is scoped to only the permissions required for npm publication to limit security risks.