chore: bump to 3.0.0-rc.0 and publish npm prereleases under rc tag

This commit is contained in:
2026-09-12 15:10:51 +02:00
parent ba7669514e
commit 41d0f0bfa2
4 changed files with 10 additions and 4 deletions
+7 -1
View File
@@ -23,7 +23,13 @@ jobs:
pnpm install
pnpm --filter cryptgeon build
- run: pnpm publish --filter cryptgeon
- name: Publish to npm
run: |
DIST_TAG=latest
if [[ "${GITHUB_REF_NAME}" == *"-"* ]]; then
DIST_TAG=rc
fi
pnpm publish --filter cryptgeon --tag "${DIST_TAG}"
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}