Skip to content

Commit

Permalink
User ŕelative Path for caching
Browse files Browse the repository at this point in the history
  • Loading branch information
daschuer committed Nov 16, 2023
1 parent a81b084 commit fa890ed
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,17 @@ jobs:

# Cache the vcpkg executable to avoid bootstrapping each time
- name: "Setup vcpkg executable cache"
id: cache-vcpkg-exe
uses: actions/cache@v3
with:
path: |
${{ matrix.vcpkg_path }}/vcpkg${{ matrix.exe_suffix }}
${{ matrix.vcpkg_path }}/downloads/tools
vcpkg${{ matrix.exe_suffix }}
downloads/tools
key: vcpkg-tool-${{ matrix.vcpkg_host_triplet }}-${{ github.ref }}-${{ github.run_number }}
restore-keys: |
key: vcpkg-tool-${{ matrix.vcpkg_host_triplet }}-${{ github.ref }}
key: vcpkg-tool-${{ matrix.vcpkg_host_triplet }}
working-directory: ${{ matrix.vcpkg_path }}

- name: Bootstrap vcpkg
run: ${{ matrix.vcpkg_bootstrap }}
Expand Down

0 comments on commit fa890ed

Please sign in to comment.