Skip to content

Commit

Permalink
workflow(ci): update ci test image (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhoushaw authored Oct 12, 2024
1 parent 0610954 commit 500fe36
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
main:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [18.19.0]
Expand Down
8 changes: 7 additions & 1 deletion scripts/release.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,13 @@ async function publish(version) {
releaseTag = 'rc';
}

let publishArgs = ['-r', 'publish', '--access', 'public', '--no-git-checks'];
let publishArgs = [
'-r',
'publish',
'--access',
'public',
'--no-git-checks',
];
if (version) {
publishArgs = publishArgs.concat(['--tag', releaseTag]);
}
Expand Down

0 comments on commit 500fe36

Please sign in to comment.