From 149a8993d982d5e29b2575c2e6373ba2780cda09 Mon Sep 17 00:00:00 2001 From: Noah Santschi-Cooney Date: Fri, 14 Nov 2025 15:14:08 +0000 Subject: [PATCH] fix: pass --tag prerelease for prerelease publishing --- .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 0421205..03bae7f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -85,7 +85,7 @@ jobs: run: npm run compile - name: Publish package - run: npm publish --access public --provenance + run: npm publish --access public --provenance ${{ inputs.version_type == 'prerelease' && '--tag prerelease' || '' }} - name: Commit and push package modifications run: |