Skip to content

Commit 515c241

Browse files
committed
fix: upgrade node in the workflow to run the publish from it
1 parent 34e6fe3 commit 515c241

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/beta-release.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
ref: ${{ github.head_ref }}
2222
- uses: actions/setup-node@v4
2323
with:
24-
node-version: '22.14.0'
24+
node-version: '24.14.0'
2525
registry-url: 'https://registry.npmjs.org'
2626
cache: 'yarn'
2727

@@ -41,6 +41,12 @@ jobs:
4141
env:
4242
GITHUB_PR_NUMBER: ${{ github.event.pull_request.number }}
4343

44+
- name: Verify publish toolchain
45+
run: |
46+
which npm
47+
node -v
48+
npm -v
49+
4450
- name: Release a new beta version
4551
run: npm publish --tag beta --access public
4652

0 commit comments

Comments
 (0)