We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bd1ab2 commit b3c1cbfCopy full SHA for b3c1cbf
1 file changed
.github/workflows/php.yml
@@ -276,3 +276,17 @@ jobs:
276
token: ${{ secrets.CODECOV_TOKEN }}
277
fail_ci_if_error: true
278
verbose: true
279
+
280
+ cleanup:
281
+ name: Cleanup artifacts
282
+ needs: [unit-tests-linux, coverage]
283
+ runs-on: [ubuntu-latest]
284
+ if: |
285
+ always() &&
286
+ needs.coverage.result == 'success' ||
287
+ (needs.unit-tests-linux == 'success' && needs.coverage == 'skipped')
288
289
+ steps:
290
+ - uses: geekyeggo/delete-artifact@v2
291
+ with:
292
+ name: coverage-data
0 commit comments