From 6b6f32e8d5c8006feac31d14485c0098747e6924 Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Sun, 11 Jun 2023 19:02:41 +0200 Subject: [PATCH] actions can't handle it, only cache the download --- .github/workflows/build.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index daecc1a2..55a1eb50 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,10 +22,10 @@ jobs: id: cache-dx5 uses: actions/cache/restore@v3 with: - path: C:\dxsdk + path: dx5sdk key: dx5sdk - - name: Setup DX5 SDK + - name: Download DX5 SDK if: steps.cache-dx5.outputs.cache-hit != 'true' run: | cd dx5sdk @@ -33,16 +33,21 @@ jobs: 7z x .\idx5sdk.exe 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 + path: dx5sdk key: dx5sdk - + + - name: Setup DX5 SDK + run: | + cd dx5sdk + cd cdrom + .\SETUP.EXE /s + - name: Build shell: cmd run: |