We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb0bda3 commit d77ce05Copy full SHA for d77ce05
.github/workflows/clj-e2e.yml
@@ -92,3 +92,11 @@ jobs:
92
name: e2e-screenshots
93
path: clj-e2e/e2e-dump/*
94
retention-days: 1
95
+
96
+ - name: Mark success
97
+ if: ${{ success() }}
98
+ run: echo "E2E OK" > e2e-success.txt
99
+ uses: actions/upload-artifact@v4
100
+ with:
101
+ name: e2e-success
102
+ path: e2e-success.txt
.github/workflows/deploy-db-test-pages.yml
@@ -14,6 +14,19 @@ jobs:
14
runs-on: ubuntu-latest
15
16
steps:
17
+ - uses: actions/download-artifact@v4
18
19
20
+ path: .
21
+ continue-on-error: true
22
23
+ - name: Check E2E success
24
+ run: |
25
+ if [ ! -f e2e-success.txt ]; then
26
+ echo "❌ E2E tests did not succeed — aborting release."
27
+ exit 1
28
+ fi
29
30
- uses: actions/checkout@v4
31
32
- name: Setup Java JDK
0 commit comments