File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 29
29
uses : actions/cache@v3
30
30
with :
31
31
path : ${{ env.DEP_DIR }}
32
- key : ${{ env.DEP_DIR }}-${{ runner.os }}
32
+ key : ${{ env.DEP_DIR }}-${{ runner.os }}-${{ inputs.target }}
33
33
34
34
- name : Run macOS Build
35
35
if : ${{ runner.os == 'macOS' && steps.restore-cache.outputs.cache-hit != 'true' }}
Original file line number Diff line number Diff line change 49
49
if [[ '${{ inputs.codesign }}' == 'true' ]] build_args+=(-s)
50
50
if (( ${+CI} && ${+RUNNER_DEBUG} )) build_args+=(--debug)
51
51
52
- ${{ inputs.workingDirectory }}/.github/scripts/build-macos.zsh ${build_args}
52
+ ${{ inputs.workingDirectory }}/.github/scripts/build-macos.zsh -d ${{ env.DEP_DIR }} ${build_args}
53
53
54
54
- name : Run Linux Build
55
55
if : ${{ runner.os == 'Linux' }}
68
68
build_args+=(-p)
69
69
fi
70
70
71
- ${{ inputs.workingDirectory }}/.github/scripts/build-linux.sh "${build_args[@]}"
71
+ ${{ inputs.workingDirectory }}/.github/scripts/build-linux.sh -d ${{ env.DEP_DIR }} "${build_args[@]}"
72
72
73
73
- name : Run Windows Build
74
74
if : ${{ runner.os == 'Windows' }}
You can’t perform that action at this time.
0 commit comments