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()'
|
if: '!cancelled()'
|
||||||
steps:
|
steps:
|
||||||
- run: |
|
- run: |
|
||||||
result="${{ needs.tests.result }}"
|
result="${{ needs.manual.result }}"
|
||||||
if [[ $result == "success" || $result == "skipped" ]]; then
|
if ! [[ $result == "success" || $result == "skipped" ]]; then
|
||||||
exit 0
|
|
||||||
else
|
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
result="${{ needs.tests.result }}"
|
||||||
|
if ! [[ $result == "success" || $result == "skipped" ]]; then
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
exit 0
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue