diff options
| author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2021-09-22 23:37:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-22 23:37:18 +0200 |
| commit | 845a27e748c26bd75752bfe19082226c4e43266b (patch) | |
| tree | 148cfba88967e7c101c26879d42f247835c1c9bf | |
| parent | 18fff69946773b86e522b8a12e4de6c5aad267f7 (diff) | |
ci: enable cache for fastci (#12186)
| -rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a9f11a361..3a06519fb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 |
