Skip to content

Commit 17d3ecf

Browse files
authored
fix: Fix NPM publish workflow (#609)
1 parent 6898739 commit 17d3ecf

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/publish.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@ name: Publish packages on NPM
22
on:
33
release:
44
types: [created]
5+
workflow_dispatch:
6+
57
jobs:
68
build:
79
runs-on: ubuntu-latest
810
steps:
911
- uses: actions/checkout@v2
10-
- uses: actions/setup-node@v1
12+
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
1113
with:
12-
node-version: "18.x"
14+
node-version: "22.x"
1315
registry-url: "https://registry.npmjs.org"
1416
- run: yarn
1517
- run: yarn build

0 commit comments

Comments
 (0)