Skip to content

Commit 774b03d

Browse files
make the artifacts merge job not fail on success
1 parent a921826 commit 774b03d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/applications.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,15 @@ jobs:
8585
merge-artifacts:
8686
runs-on: ubuntu-latest
8787
needs: application-test
88-
if: ${{ always() }}
88+
if: ${{ failure() && !cancelled() }}
8989
steps:
9090
- name: Merge Artifacts
9191
uses: actions/upload-artifact/merge@v4
92+
continue-on-error: true
9293
with:
9394
name: artifacts
9495
pattern: app-tests-artifacts-*
96+
delete-merged: true
9597

9698
schematics-test:
9799
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)