mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 09:31:22 -05:00
ci: don't fail-fast on tag build (#5189)
This commit is contained in:
parent
e9318aa2c0
commit
60dfd911de
1 changed files with 4 additions and 1 deletions
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
@ -29,8 +29,11 @@ jobs:
|
|||
# Always run master branch builds to completion. This allows the cache to
|
||||
# stay mostly up-to-date in situations where a single job fails due to
|
||||
# e.g. a flaky test.
|
||||
# Don't fast-fail on tag build because publishing binaries shouldn't be
|
||||
# prevented if 'cargo publish' fails (which can be a false negative).
|
||||
fail-fast:
|
||||
${{ github.event_name != 'push' || github.ref != 'refs/heads/master' }}
|
||||
${{ github.event_name == 'pull_request' || (github.ref !=
|
||||
'refs/heads/master' && !startsWith(github.ref, 'refs/tags/')) }}
|
||||
|
||||
env:
|
||||
CARGO_INCREMENTAL: 0
|
||||
|
|
Loading…
Add table
Reference in a new issue