mirror of
https://github.com/denoland/deno.git
synced 2025-01-03 04:48:52 -05:00
ci: enable cache for fastci (#12186)
This commit is contained in:
parent
18fff69946
commit
845a27e748
1 changed files with 2 additions and 1 deletions
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
|
@ -267,7 +267,8 @@ jobs:
|
||||||
# TODO(kt3k): Change the version to the released version
|
# TODO(kt3k): Change the version to the released version
|
||||||
# when https://github.com/actions/cache/pull/489 (or 571) is merged.
|
# when https://github.com/actions/cache/pull/489 (or 571) is merged.
|
||||||
uses: actions/cache@03e00da99d75a2204924908e1cca7902cafce66b
|
uses: actions/cache@03e00da99d75a2204924908e1cca7902cafce66b
|
||||||
if: matrix.profile == 'release' && github.ref == 'refs/heads/main'
|
if: (matrix.profile == 'release' || matrix.profile == 'fastci') &&
|
||||||
|
github.ref == 'refs/heads/main'
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
./target
|
./target
|
||||||
|
|
Loading…
Reference in a new issue