Skip to content

Commit 0621c38

Browse files
committed
Fix runner to retry on compilation failure
1 parent 06cb173 commit 0621c38

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/coverage-pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ jobs:
247247
needs: collect
248248
if: |
249249
always() &&
250-
needs.collect.outputs.report_ready != 'true' &&
250+
needs.collect.outputs.host_hit != 'true' &&
251251
fromJSON(inputs.round || '1') < 4
252252
runs-on: ubuntu-24.04
253253
steps:
@@ -269,7 +269,7 @@ jobs:
269269
needs: collect
270270
if: |
271271
always() &&
272-
needs.collect.outputs.report_ready != 'true' &&
272+
needs.collect.outputs.host_hit != 'true' &&
273273
fromJSON(inputs.round || '1') >= 4
274274
runs-on: ubuntu-24.04
275275
steps:

0 commit comments

Comments
 (0)