Skip to content

Commit e6e1151

Browse files
committed
Fix build versioning
1 parent 624d625 commit e6e1151

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ jobs:
3535
tag-prefix: v
3636
- name: Build Version
3737
run: |
38-
npm run version -- ${{steps.version.outputs.version}}
38+
npm install --global replace-in-files-cli
39+
replace-in-files --string="2.0.0-dev" --replacement=${{steps.version.outputs.version}} packages/core/src/configuration/Configuration.ts
40+
replace-in-files --string="2.0.0-dev" --replacement=${{steps.version.outputs.version}} **/package*.json
3941
- name: Build
4042
run: npm run build
4143
- name: Lint

0 commit comments

Comments
 (0)