Skip to content

Commit

Permalink
ci: fix yaml syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Motiejus Jakštys authored and motiejus-wix committed Feb 14, 2024
1 parent 02c6e14 commit 8af313f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,23 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/cache@v4
name: Windows: cache bazelisk and zig-cache
name: "Windows: cache bazelisk and zig-cache"
if: runner.os == 'Windows'
with:
key: cache-${{ runner.os }}-${{ hashFiles('.bazelversion', 'toolchain/private/zig_sdk.bzl', '.github/workflows/ci.yaml') }}
path: |
'C:\Temp\hermetic_cc_toolchain'
'~\AppData\Local\bazelisk'
- uses: actions/cache@v4
name: MacOS: cache bazelisk and zig-cache
name: "MacOS: cache bazelisk and zig-cache"
if: runner.os == 'macOS'
with:
key: cache-${{ runner.os }}-${{ hashFiles('.bazelversion', 'toolchain/private/zig_sdk.bzl', '.github/workflows/ci.yaml') }}
path: |
'/tmp/zig-cache'
'~/Library/Caches/bazelisk'
- uses: actions/cache@v4
name: Linux: cache bazelisk and zig-cache
name: "Linux: cache bazelisk and zig-cache"
if: runner.os == 'macOS'
with:
key: cache-${{ runner.os }}-${{ hashFiles('.bazelversion', 'toolchain/private/zig_sdk.bzl', '.github/workflows/ci.yaml') }}
Expand Down

0 comments on commit 8af313f

Please sign in to comment.