We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 863a2db commit 08cecebCopy full SHA for 08ceceb
.github/workflows/deployment.yml
@@ -2,6 +2,7 @@ name: Code Coverage and Release
2
3
on:
4
workflow_dispatch:
5
+ push:
6
pull_request:
7
branches:
8
- master
@@ -41,7 +42,7 @@ jobs:
41
42
- name: Create new Package version and Promote
43
# Currently only to be run when creating a PR toward master, in any other case we don't want to go that route.
44
# Can be adjusted in the future to only promote packages when merging, but create packages in a PR
- if: github.base_ref == 'master' && github.actor == github.event.repository.owner.login
45
+ if: github.ref != 'refs/head/master' && github.actor == github.event.repository.owner.login
46
run: |
47
chmod +x scripts/packagepromotion.sh
48
./scripts/packagepromotion.sh
0 commit comments