Skip to content

Commit 26e7e3f

Browse files
committed
📦 Chore: update actions
1 parent e1a08f7 commit 26e7e3f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Setup Node.js
3232
uses: actions/setup-node@v6
3333
with:
34-
node-version: 22
34+
node-version: 25
3535
registry-url: https://registry.npmjs.org
3636
cache: pnpm
3737

@@ -46,12 +46,12 @@ jobs:
4646

4747
- name: Publish (master)
4848
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
49-
run: pnpm publish --access public --provenance
49+
run: npm publish --access public --provenance
5050

5151
- name: Publish (alpha)
5252
if: github.event_name == 'push' && github.ref == 'refs/heads/alpha'
53-
run: pnpm publish --tag alpha --access public --publish-branch "${{ github.ref_name }}" --provenance
53+
run: npm publish --tag alpha --access public --provenance
5454

5555
- name: Publish (manual)
5656
if: github.event_name == 'workflow_dispatch'
57-
run: pnpm publish --tag "${{ inputs.publish_tag || 'latest' }}" --access public --publish-branch "${{ github.ref_name }}" --provenance
57+
run: npm publish --tag "${{ inputs.publish_tag || 'latest' }}" --access public --provenance

0 commit comments

Comments
 (0)