File tree 1 file changed +6
-3
lines changed
.github/actions/pristine-homebrew
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 40
40
uses : actions/cache/restore@v4
41
41
with :
42
42
lookup-only : true
43
- path : ${{ env.CACHE_PATHS }}
43
+ path : |-
44
+ ${{ env.CACHE_PATHS }}
44
45
key : brew-pristine-${{ inputs.os }}-${{ steps.brew.outputs.version }}
45
46
- name : Remove current Homebrew directories
46
47
if : inputs.restore == 'true' && steps.cache_lookup.outputs.cache-hit == 'true'
54
55
if : inputs.restore == 'true' && steps.cache_lookup.outputs.cache-hit == 'true'
55
56
uses : actions/cache/restore@v4
56
57
with :
57
- path : ${{ env.CACHE_PATHS }}
58
+ path : |-
59
+ ${{ env.CACHE_PATHS }}
58
60
key : ${{ steps.cache_lookup.outputs.cache-primary-key }}
59
61
- name : Make Homebrew pristine
60
62
if : steps.cache_lookup.outputs.cache-hit != 'true'
89
91
if : steps.cache_lookup.outputs.cache-hit != 'true'
90
92
uses : actions/cache/save@v4
91
93
with :
92
- path : ${{ env.CACHE_PATHS }}
94
+ path : |-
95
+ ${{ env.CACHE_PATHS }}
93
96
key : ${{ steps.cache_lookup.outputs.cache-primary-key }}
94
97
- name : Remove brew download cache
95
98
if : inputs.restore == 'true'
You can’t perform that action at this time.
0 commit comments