Skip to content

Commit f758af5

Browse files
committed
temp
1 parent 2f82958 commit f758af5

3 files changed

Lines changed: 26 additions & 34 deletions

File tree

.github/actions/cache-common/action.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.github/actions/cache-restore/action.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,17 @@ inputs:
77
runs:
88
using: "composite"
99
steps:
10-
- name: Cache restore
11-
uses: ./.github/actions/cache-common
10+
- name: Cache build and vcpkg
11+
uses: actions/cache/restore@v4
1212
with:
13-
type: restore
14-
key-prefix: macos-${{ inputs.arch }}
13+
path: |
14+
build
15+
external/vcpkg
16+
key: ${{ inputs.key-prefix }}-2025-07-18
17+
18+
- name: Cache bin
19+
uses: actions/cache/restore@v4
20+
with:
21+
path: |
22+
bin
23+
key: bin-2025-07-18

.github/actions/cache-save/action.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,17 @@ inputs:
77
runs:
88
using: "composite"
99
steps:
10-
- name: Cache save
11-
uses: ./.github/actions/cache-common
10+
- name: Cache build and vcpkg
11+
uses: actions/cache/save@v4
1212
with:
13-
type: save
14-
key-prefix: macos-${{ inputs.arch }}
13+
path: |
14+
build
15+
external/vcpkg
16+
key: ${{ inputs.key-prefix }}-2025-07-18
17+
18+
- name: Cache bin
19+
uses: actions/cache/save@v4
20+
with:
21+
path: |
22+
bin
23+
key: bin-2025-07-18

0 commit comments

Comments
 (0)