Skip to content

Commit c7a1970

Browse files
committed
fix release flow
Signed-off-by: t-kikuc <tkikuchi07f@gmail.com>
1 parent 90abc59 commit c7a1970

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/prepare-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
description: 'New version number. e.g. "0.1.2"'
1212

1313
jobs:
14-
publish:
14+
create-pr:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v4

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"format": "biome format --write ./src",
1515
"lint": "biome lint ./src",
1616
"check": "biome check --write ./src",
17-
"update-version-ts": "sed -i '' \"s/^const VERSION = .*;$/const VERSION = \\\"$VERSION\\\";/\" src/version.ts",
17+
"update-version-ts": "sed -i \"s/^const VERSION = .*;$/const VERSION = \\\"$VERSION\\\";/\" src/version.ts",
1818
"prepare-release": "npm version $VERSION --no-git-tag-version && VERSION=$VERSION npm run update-version-ts"
1919
},
2020
"dependencies": {

0 commit comments

Comments
 (0)