mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 07:28:00 -05:00
do it in the 2 step way
This commit is contained in:
parent
cb25361818
commit
dedc88d7ca
1 changed files with 10 additions and 2 deletions
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
|
@ -18,9 +18,9 @@ jobs:
|
|||
repository: 'itsmattkc/msvc420'
|
||||
path: msvc420
|
||||
|
||||
- name: Cache DX5 SDK
|
||||
- name: Restore cached DX5 SDK
|
||||
id: cache-dx5
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache/restore@v3
|
||||
with:
|
||||
path: C:\dxsdk
|
||||
key: dx5sdk
|
||||
|
@ -34,6 +34,14 @@ jobs:
|
|||
7z x .\DX5SDK.EXE
|
||||
cd cdrom
|
||||
.\SETUP.EXE /s
|
||||
|
||||
- name: Cache DX5 SDK
|
||||
if: steps.cache-dx5.outputs.cache-hit != 'true'
|
||||
id: save-dx5
|
||||
uses: actions/cache/save@v3
|
||||
with:
|
||||
path: C:\dxsdk
|
||||
key: dx5sdk
|
||||
|
||||
- name: Build
|
||||
shell: cmd
|
||||
|
|
Loading…
Reference in a new issue