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 bcfb388 commit 5fc8ab3Copy full SHA for 5fc8ab3
.github/workflows/release-please.yml
@@ -1,8 +1,6 @@
1
name: Release Please
2
3
on:
4
- push:
5
- branches: ['main', 'master']
6
workflow_run:
7
workflows: ["Build Executables"]
8
types:
@@ -16,9 +14,7 @@ permissions:
16
14
jobs:
17
15
release-please:
18
runs-on: ubuntu-latest
19
- if: >
20
- (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success') ||
21
- github.event_name == 'push'
+ if: github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success'
22
outputs:
23
release_created: ${{ steps.release.outputs.release_created }}
24
tag_name: ${{ steps.release.outputs.tag_name }}
0 commit comments