Fix lerna version bumps and release-recurring skipping, again (#4583)

This commit is contained in:
David Marby
2022-03-10 18:45:11 +01:00
committed by GitHub
parent d3b4322bf2
commit 0bfb097676
2 changed files with 3 additions and 3 deletions

View File

@@ -9,8 +9,6 @@ on:
types:
- opened
- synchronize
branches-ignore:
- 'release/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
@@ -18,6 +16,8 @@ env:
PR_NUMBER: ${{ github.event.number }}
jobs:
build-and-upload-artifacts:
# Skip jobs for release PRs
if: "!startsWith(github.head_ref, 'release/')"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false

View File

@@ -18,7 +18,7 @@
"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 --ignore-scripts -- --package-lock-only --no-audit",
"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",