Skip to content

Commit

Permalink
Fix build versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
ejsmith committed Feb 18, 2023
1 parent 624d625 commit e6e1151
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ jobs:
tag-prefix: v
- name: Build Version
run: |
npm run version -- ${{steps.version.outputs.version}}
npm install --global replace-in-files-cli
replace-in-files --string="2.0.0-dev" --replacement=${{steps.version.outputs.version}} packages/core/src/configuration/Configuration.ts
replace-in-files --string="2.0.0-dev" --replacement=${{steps.version.outputs.version}} **/package*.json
- name: Build
run: npm run build
- name: Lint
Expand Down

0 comments on commit e6e1151

Please sign in to comment.