We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b667ec commit 4adaba5Copy full SHA for 4adaba5
.github/workflows/release.yml
@@ -21,17 +21,10 @@ on:
21
default: AUTO
22
release:
23
types: [ published ]
24
- workflow_run:
25
- workflows: [ Build ]
26
- types: [ completed ]
27
- branches: [ master ]
28
29
jobs:
30
31
runs-on: ubuntu-latest
32
- if: |
33
- github.event_name != 'workflow_run'
34
- || (github.event.workflow_run.conclusion == 'success' && contains(github.event.workflow_run.head_commit.message, '[ci release]'))
35
steps:
36
- name: Validate build succeeded
37
env:
@@ -116,7 +109,6 @@ jobs:
116
109
- name: Publish release
117
110
if: |
118
111
github.event_name == 'release'
119
- || github.event_name == 'workflow_run'
120
112
|| inputs.publish == 'RELEASE'
121
113
|| (inputs.publish == 'AUTO' && github.ref == 'refs/heads/master')
122
114
0 commit comments