Skip to content

Commit

Permalink
ci: enable cache for fastci (denoland#12186)
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronO committed Sep 22, 2021
1 parent 18fff69 commit 845a27e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,8 @@ jobs:
# TODO(kt3k): Change the version to the released version
# when https://github.com/actions/cache/pull/489 (or 571) is merged.
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:
path: |
./target
Expand Down

0 comments on commit 845a27e

Please sign in to comment.