Skip to content

Commit

Permalink
check manual builds successfully (#373)
Browse files Browse the repository at this point in the history
Co-authored-by: ibizaman <[email protected]>
  • Loading branch information
ibizaman and ibizaman authored Nov 26, 2024
1 parent 3e63cb2 commit 70de9ef
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 11 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,12 @@ jobs:
if: '!cancelled()'
steps:
- run: |
result="${{ needs.manual.result }}"
if ! [[ $result == "success" || $result == "skipped" ]]; then
exit 1
fi
result="${{ needs.tests.result }}"
if [[ $result == "success" || $result == "skipped" ]]; then
exit 0
else
if ! [[ $result == "success" || $result == "skipped" ]]; then
exit 1
fi
exit 0
31 changes: 23 additions & 8 deletions docs/redirects.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
],
Expand Down

0 comments on commit 70de9ef

Please sign in to comment.