check manual builds successfully (#373)
Co-authored-by: ibizaman <ibizapeanut@gmail.com>
This commit is contained in:
parent
3e63cb2e12
commit
70de9efa21
2 changed files with 30 additions and 12 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
|
||||
|
|
|
|||
|
|
@ -38,17 +38,29 @@
|
|||
"blocks-postgresql-options-shb.postgresql.databasebackup": [
|
||||
"blocks-postgresql.html#blocks-postgresql-options-shb.postgresql.databasebackup"
|
||||
],
|
||||
"blocks-postgresql-options-shb.postgresql.databasebackup.backupCmd": [
|
||||
"blocks-postgresql.html#blocks-postgresql-options-shb.postgresql.databasebackup.backupCmd"
|
||||
"blocks-postgresql-options-shb.postgresql.databasebackup.request": [
|
||||
"blocks-postgresql.html#blocks-postgresql-options-shb.postgresql.databasebackup.request"
|
||||
],
|
||||
"blocks-postgresql-options-shb.postgresql.databasebackup.backupName": [
|
||||
"blocks-postgresql.html#blocks-postgresql-options-shb.postgresql.databasebackup.backupName"
|
||||
"blocks-postgresql-options-shb.postgresql.databasebackup.request.backupCmd": [
|
||||
"blocks-postgresql.html#blocks-postgresql-options-shb.postgresql.databasebackup.request.backupCmd"
|
||||
],
|
||||
"blocks-postgresql-options-shb.postgresql.databasebackup.restoreCmd": [
|
||||
"blocks-postgresql.html#blocks-postgresql-options-shb.postgresql.databasebackup.restoreCmd"
|
||||
"blocks-postgresql-options-shb.postgresql.databasebackup.request.backupName": [
|
||||
"blocks-postgresql.html#blocks-postgresql-options-shb.postgresql.databasebackup.request.backupName"
|
||||
],
|
||||
"blocks-postgresql-options-shb.postgresql.databasebackup.user": [
|
||||
"blocks-postgresql.html#blocks-postgresql-options-shb.postgresql.databasebackup.user"
|
||||
"blocks-postgresql-options-shb.postgresql.databasebackup.request.restoreCmd": [
|
||||
"blocks-postgresql.html#blocks-postgresql-options-shb.postgresql.databasebackup.request.restoreCmd"
|
||||
],
|
||||
"blocks-postgresql-options-shb.postgresql.databasebackup.request.user": [
|
||||
"blocks-postgresql.html#blocks-postgresql-options-shb.postgresql.databasebackup.request.user"
|
||||
],
|
||||
"blocks-postgresql-options-shb.postgresql.databasebackup.result": [
|
||||
"blocks-postgresql.html#blocks-postgresql-options-shb.postgresql.databasebackup.result"
|
||||
],
|
||||
"blocks-postgresql-options-shb.postgresql.databasebackup.result.backupService": [
|
||||
"blocks-postgresql.html#blocks-postgresql-options-shb.postgresql.databasebackup.result.backupService"
|
||||
],
|
||||
"blocks-postgresql-options-shb.postgresql.databasebackup.result.restoreScript": [
|
||||
"blocks-postgresql.html#blocks-postgresql-options-shb.postgresql.databasebackup.result.restoreScript"
|
||||
],
|
||||
"blocks-postgresql-options-shb.postgresql.debug": [
|
||||
"blocks-postgresql.html#blocks-postgresql-options-shb.postgresql.debug"
|
||||
|
|
@ -632,6 +644,9 @@
|
|||
"contracts-databasebackup-options-shb.contracts.databasebackup.result.restoreScript": [
|
||||
"contracts-databasebackup.html#contracts-databasebackup-options-shb.contracts.databasebackup.result.restoreScript"
|
||||
],
|
||||
"contracts-databasebackup-options-shb.contracts.databasebackup.settings": [
|
||||
"contracts-databasebackup.html#contracts-databasebackup-options-shb.contracts.databasebackup.settings"
|
||||
],
|
||||
"contracts-secret-options-shb.contracts.secret": [
|
||||
"contracts-secret.html#contracts-secret-options-shb.contracts.secret"
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in a new issue