Fix publish release condition logic
This commit is contained in:
parent
76aacb4b85
commit
e57447b1c8
1 changed files with 1 additions and 1 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -162,7 +162,7 @@ jobs:
|
|||
path: artifacts/*
|
||||
publish_release:
|
||||
name: Publish release
|
||||
if: ${{ github.event_name == 'schedule' || github.event.inputs.doRelease == 'true' }}
|
||||
if: ${{ always() && ( github.event_name == 'schedule' || github.event.inputs.doRelease == 'true' ) && needs.build_ffmpeg.result == 'success' }}
|
||||
needs: build_ffmpeg
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
Loading…
Reference in a new issue