Fix bumping the app version

This commit is contained in:
David Marby 2022-04-20 17:14:33 +02:00
parent 641cdc83d4
commit 864ac9f0c2
3 changed files with 5 additions and 2 deletions

View File

@ -60,6 +60,10 @@ jobs:
- name: Config version
run: APP_VERSION="${{ env.RELEASE_VERSION }}" npm run app-bump-version
# https://github.com/lerna/lerna/issues/2832
- name: Update package-lock.json files
run: npx lerna bootstrap --no-ci --ignore-scripts -- --package-lock-only --no-audit
- name: Commit
run: git commit -am "Bump app version to ${{ env.RELEASE_VERSION }} and lerna package versions"

View File

@ -1,5 +1,5 @@
{
"version": "2.13.0-beta.0",
"version": "2.12.0-beta.0",
"includeMergedTags": true,
"packages": [
"packages/*",

View File

@ -18,7 +18,6 @@
"bootstrap": "npm install && lerna bootstrap && lerna run --stream bootstrap",
"bootstrap:electron-builder": "lerna bootstrap --no-ci -- --production --no-optional",
"version": "lerna version",
"postversion": "lerna clean --yes && lerna bootstrap --no-ci --ignore-scripts -- --package-lock-only --no-audit",
"publish": "lerna publish from-package",
"clean": "lerna run clean --parallel --stream && lerna clean --yes && rimraf node_modules",
"test": "lerna run --stream --parallel test",