We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 624d625 commit e6e1151Copy full SHA for e6e1151
.github/workflows/build.yml
@@ -35,7 +35,9 @@ jobs:
35
tag-prefix: v
36
- name: Build Version
37
run: |
38
- npm run version -- ${{steps.version.outputs.version}}
+ 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
41
- name: Build
42
run: npm run build
43
- name: Lint
0 commit comments