check manual builds successfully (#373)

Co-authored-by: ibizaman <ibizapeanut@gmail.com>
This commit is contained in:
Pierre Penninckx 2024-11-26 21:22:11 +01:00 committed by GitHub
parent 3e63cb2e12
commit 70de9efa21
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 30 additions and 12 deletions

View file

@ -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

View file

@ -38,17 +38,29 @@
"blocks-postgresql-options-shb.postgresql.databasebackup": [ "blocks-postgresql-options-shb.postgresql.databasebackup": [
"blocks-postgresql.html#blocks-postgresql-options-shb.postgresql.databasebackup" "blocks-postgresql.html#blocks-postgresql-options-shb.postgresql.databasebackup"
], ],
"blocks-postgresql-options-shb.postgresql.databasebackup.backupCmd": [ "blocks-postgresql-options-shb.postgresql.databasebackup.request": [
"blocks-postgresql.html#blocks-postgresql-options-shb.postgresql.databasebackup.backupCmd" "blocks-postgresql.html#blocks-postgresql-options-shb.postgresql.databasebackup.request"
], ],
"blocks-postgresql-options-shb.postgresql.databasebackup.backupName": [ "blocks-postgresql-options-shb.postgresql.databasebackup.request.backupCmd": [
"blocks-postgresql.html#blocks-postgresql-options-shb.postgresql.databasebackup.backupName" "blocks-postgresql.html#blocks-postgresql-options-shb.postgresql.databasebackup.request.backupCmd"
], ],
"blocks-postgresql-options-shb.postgresql.databasebackup.restoreCmd": [ "blocks-postgresql-options-shb.postgresql.databasebackup.request.backupName": [
"blocks-postgresql.html#blocks-postgresql-options-shb.postgresql.databasebackup.restoreCmd" "blocks-postgresql.html#blocks-postgresql-options-shb.postgresql.databasebackup.request.backupName"
], ],
"blocks-postgresql-options-shb.postgresql.databasebackup.user": [ "blocks-postgresql-options-shb.postgresql.databasebackup.request.restoreCmd": [
"blocks-postgresql.html#blocks-postgresql-options-shb.postgresql.databasebackup.user" "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-options-shb.postgresql.debug": [
"blocks-postgresql.html#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-options-shb.contracts.databasebackup.result.restoreScript": [
"contracts-databasebackup.html#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-options-shb.contracts.secret": [
"contracts-secret.html#contracts-secret-options-shb.contracts.secret" "contracts-secret.html#contracts-secret-options-shb.contracts.secret"
], ],