mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 07:37:59 -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'
|
repository: 'itsmattkc/msvc420'
|
||||||
path: msvc420
|
path: msvc420
|
||||||
|
|
||||||
- name: Cache DX5 SDK
|
- name: Restore cached DX5 SDK
|
||||||
id: cache-dx5
|
id: cache-dx5
|
||||||
uses: actions/cache@v3
|
uses: actions/cache/restore@v3
|
||||||
with:
|
with:
|
||||||
path: C:\dxsdk
|
path: C:\dxsdk
|
||||||
key: dx5sdk
|
key: dx5sdk
|
||||||
|
@ -34,6 +34,14 @@ jobs:
|
||||||
7z x .\DX5SDK.EXE
|
7z x .\DX5SDK.EXE
|
||||||
cd cdrom
|
cd cdrom
|
||||||
.\SETUP.EXE /s
|
.\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
|
- name: Build
|
||||||
shell: cmd
|
shell: cmd
|
||||||
|
|
Loading…
Reference in a new issue