mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-09 23:34:20 +00:00
CI: Don't unconditionally skip the deploy job if the build job was skipped
This commit is contained in:
parent
ca10a2c56b
commit
6bee9d515c
1 changed files with 1 additions and 1 deletions
2
.github/workflows/juce_private_build.yml
vendored
2
.github/workflows/juce_private_build.yml
vendored
|
|
@ -74,7 +74,7 @@ jobs:
|
|||
cpp-std: ${{ inputs.cpp-std }}
|
||||
secrets: inherit
|
||||
deploy:
|
||||
if: ${{ contains(fromJSON('["master", "develop"]'), github.ref_name) && inputs.cpp-std == '' && inputs.nightly-targets == '[]' }}
|
||||
if: ${{ !cancelled() && (success() || needs.build.result == 'skipped') && contains(fromJSON('["master", "develop"]'), github.ref_name) && inputs.cpp-std == '' && inputs.nightly-targets == '[]' }}
|
||||
needs: [build]
|
||||
name: Deploy
|
||||
uses: juce-framework/JUCE-utils/.github/workflows/deploy.yml@master
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue