Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
Lazrius committed Mar 10, 2024
1 parent f011df8 commit e8eb361
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@ jobs:
- name: Set Work ENVs
id: vars
run: |
echo $HOME
echo "::set-output name=date::$(date +'%Y-%m-%d-%H-%M')"
echo "DX9_SDK=$HOME/dx9" >> $GITHUB_ENV
exit 4
shell: bash

- run: vcpkg integrate install
Expand Down Expand Up @@ -52,10 +54,13 @@ jobs:
- name: "Cache DX9 SDK"
if: steps.dx9-cache.outputs.cache-hit != 'true'
run: |
echo Downloading DXSDK June (2010)
curl -s -L -o "_DX2010_.exe" "https://download.microsoft.com/download/A/E/7/AE743F1F-632B-4809-87A9-AA1BB3458E31/DXSDK_Jun10.exe"
echo Extracting include files
7z x _DX2010_.exe DXSDK/Include -o_DX2010_ > nul
echo Extracting lib files
7z x _DX2010_.exe DXSDK/Lib/x86 -o_DX2010_ > nul
echo DX9 SDK to workspace
echo Moving SDK to home directory
mkdir $DX9_SDK
mv _DX2010_/DXSDK $DX9_SDK
echo Cleaning up install files
Expand Down

0 comments on commit e8eb361

Please sign in to comment.