diff options
author | Hiroshi SHIBATA <[email protected]> | 2025-06-11 16:02:00 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2025-06-11 17:04:18 +0900 |
commit | fd7e56a831acfdcfd42bee958ae62967dc1033e1 (patch) | |
tree | 71d714d8fae1b9964ef2f96de23e30e48b079bf3 | |
parent | 255e6e619752854e5740519ad8829e4a7a4b9bea (diff) |
Use artifacts built by vcpkg manifest mode
I'm not sure why vcpkg cache is not using while recent weeks.
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/13582
-rw-r--r-- | .github/workflows/windows.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index fa3d2f659e..e0719118b4 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -123,7 +123,7 @@ jobs: - name: Restore vcpkg artifact uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 with: - path: C:\Users\runneradmin\AppData\Local\vcpkg\archives + path: ${{ github.workspace }}/src/vcpkg_installed key: windows-${{ matrix.os }}-vcpkg-${{ hashFiles('src/vcpkg.json') }} - name: Install libraries with vcpkg |