Skip to content

Commit 7cd9697

Browse files
Merge pull request #100 from maejima-fumika/bugfix/github-workflow
Fix the workflow.
2 parents d7cacae + 1bf4227 commit 7cd9697

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release-components.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
uses: actions/checkout@v4
3939

4040
- name: Setup Node.js
41-
uses: actions/setup-node@v4
41+
uses: actions/setup-node@v5
4242
with:
4343
node-version: 20
4444
registry-url: 'https://registry.npmjs.org'
@@ -78,8 +78,8 @@ jobs:
7878

7979
- name: Publish @bscript/lang to npm
8080
working-directory: ./lang
81-
run: npm publish --provenance || echo 'Failed or skipped publishing @bscript/lang'
81+
run: npm publish || echo 'Failed or skipped publishing @bscript/lang'
8282

8383
- name: Publish @bscript/cli to npm
8484
working-directory: ./cli
85-
run: npm publish --provenance || echo 'Failed or skipped publishing @bscript/cli'
85+
run: npm publish || echo 'Failed or skipped publishing @bscript/cli'

0 commit comments

Comments
 (0)