diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5972379b9d..837d535e24 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,6 +59,6 @@ jobs: echo "Using npm tag: $NPM_TAG" - name: Publish to npm - run: pnpm -r publish --access public --no-git-checks --tag ${{steps.check_version.outputs.tag}} + run: pnpm -r publish --access public --no-git-checks --tag ${{ steps.determine_npm_tag.outputs.npm_tag }} env: - NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} \ No newline at end of file + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} \ No newline at end of file diff --git a/package.json b/package.json index 8f4a658158..035f5b2004 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "release": "turbo --filter \"./packages/*\" build && bumpp && pnpm -r publish --access public --no-git-checks", "release:no-build": "bumpp && pnpm -r publish --access public --no-git-checks --tag next", "release:canary": "turbo --filter \"./packages/*\" build && bumpp && pnpm -r publish --access public --tag canary --no-git-checks", - "release:rc": "turbo --filter \"./packages/*\" build && bumpp && pnpm -r publish --access public --tag rc --no-git-checks", + "bump": "bumpp", "test": "turbo --filter \"./packages/*\" test", "typecheck": "turbo --filter \"./packages/*\" typecheck" },