diff options
author | Joas Schilling <coding@schilljs.com> | 2024-07-30 14:37:15 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-07-30 14:37:15 +0200 |
commit | fa3f4e9d2c95a64e9e3fe68da9fdc4c843382208 (patch) | |
tree | a4915470b1d62ec5c0c1e7ab686088ac62ef19c9 /.github | |
parent | 21f558b12bdb985ec312ac8973f2be9c0d73f824 (diff) | |
download | nextcloud-server-fa3f4e9d2c95a64e9e3fe68da9fdc4c843382208.tar.gz nextcloud-server-fa3f4e9d2c95a64e9e3fe68da9fdc4c843382208.zip |
ci: Fix summary condition
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/files-external-s3.yml | 2 | ||||
-rw-r--r-- | .github/workflows/node-test.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/files-external-s3.yml b/.github/workflows/files-external-s3.yml index 07d8187b1d4..de44dc372da 100644 --- a/.github/workflows/files-external-s3.yml +++ b/.github/workflows/files-external-s3.yml @@ -184,4 +184,4 @@ jobs: steps: - name: Summary status - run: if ${{ needs.changes.outputs.src != 'false' && needs.files-external-s3-minio.result != 'success' && needs.files-external-s3-localstack.result != 'success' }}; then exit 1; fi + run: if ${{ needs.changes.outputs.src != 'false' && (needs.files-external-s3-minio.result != 'success' || needs.files-external-s3-localstack.result != 'success') }}; then exit 1; fi diff --git a/.github/workflows/node-test.yml b/.github/workflows/node-test.yml index 2bdeec4f065..7ca3a177d9c 100644 --- a/.github/workflows/node-test.yml +++ b/.github/workflows/node-test.yml @@ -170,4 +170,4 @@ jobs: steps: - name: Summary status - run: if ${{ needs.changes.outputs.src != 'false' && needs.test.result != 'success' && needs.jsunit.result != 'success' && needs.handlebars.result != 'success' }}; then exit 1; fi + run: if ${{ needs.changes.outputs.src != 'false' && (needs.test.result != 'success' || needs.jsunit.result != 'success' || needs.handlebars.result != 'success') }}; then exit 1; fi |