We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b21273 commit 9df4493Copy full SHA for 9df4493
.github/workflows/on-push.yml
@@ -1,6 +1,9 @@
1
name: on-push-event
2
on:
3
- push
+ push:
4
+ branches:
5
+ - '**' # matches every branch
6
+ - '!main'
7
8
jobs:
9
on_push:
.github/workflows/on-release.yml
@@ -6,7 +6,6 @@ on:
workflow_dispatch: {}
publish:
- if: github.event.pull_request.merged == true
10
runs-on: ubuntu-latest
11
12
steps:
@@ -41,5 +40,4 @@ jobs:
41
40
else
42
npx lerna version --conventional-commits --conventional-prerelease --preid beta --create-release github --yes
43
fi
44
-
45
- npx lerna publish --no-verify-access from-git --yes
+ npx lerna publish from-git --no-verify-access --yes
0 commit comments