check manual builds successfully
This commit is contained in:
parent
3e63cb2e12
commit
727388c53f
1 changed files with 7 additions and 4 deletions
11
.github/workflows/build.yaml
vendored
11
.github/workflows/build.yaml
vendored
|
|
@ -119,9 +119,12 @@ jobs:
|
|||
if: '!cancelled()'
|
||||
steps:
|
||||
- run: |
|
||||
result="${{ needs.tests.result }}"
|
||||
if [[ $result == "success" || $result == "skipped" ]]; then
|
||||
exit 0
|
||||
else
|
||||
result="${{ needs.manual.result }}"
|
||||
if ! [[ $result == "success" || $result == "skipped" ]]; then
|
||||
exit 1
|
||||
fi
|
||||
result="${{ needs.tests.result }}"
|
||||
if ! [[ $result == "success" || $result == "skipped" ]]; then
|
||||
exit 1
|
||||
fi
|
||||
exit 0
|
||||
|
|
|
|||
Loading…
Reference in a new issue