Skip to content

Commit 249ecab

Browse files
committed
fix publish action
1 parent c973f34 commit 249ecab

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/generate_publish_release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v3
1212
- uses: actions/setup-node@v3
13+
with:
14+
node-version: "20"
1315
- uses: ruby/setup-ruby@v1
1416
with:
1517
ruby-version: 3.1

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
- uses: actions/checkout@v3
1515
- uses: actions/setup-node@v3
1616
with:
17-
node-version: '12.x'
18-
registry-url: 'https://registry.npmjs.org'
17+
node-version: "20.x"
18+
registry-url: "https://registry.npmjs.org"
1919
- run: npm install
2020
- run: npm publish
2121
env:

0 commit comments

Comments
 (0)