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 3f21ae1 commit 75a7711
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
id: vars
run: |
echo "::set-output name=date::$(date +'%Y-%m-%d-%H-%M')"
echo "DX9_SDK=$HOME/dx9" >> $GITHUB_ENV
echo "DX9_SDK=${{ github.workspace }}/dx9" >> $GITHUB_ENV
shell: bash

- run: vcpkg integrate install
Expand Down Expand Up @@ -52,17 +52,17 @@ jobs:
- name: "Cache DX9 SDK"
if: steps.dx9-cache.outputs.cache-hit != 'true'
run: |
curl -L -o "_DX2010_.exe" "https://download.microsoft.com/download/A/E/7/AE743F1F-632B-4809-87A9-AA1BB3458E31/DXSDK_Jun10.exe"
curl -s -L -o "_DX2010_.exe" "https://download.microsoft.com/download/A/E/7/AE743F1F-632B-4809-87A9-AA1BB3458E31/DXSDK_Jun10.exe"
7z x _DX2010_.exe DXSDK/Include -o_DX2010_
7z x _DX2010_.exe DXSDK/Lib/x86 -o_DX2010_
mv _DX2010_/DXSDK $HOME/dx9
mv _DX2010_/DXSDK/* $DX9_SDK
rm -fR _DX*_ _DX*_.exe
shell: bash

- name: "Download HDE Installer"
if: steps.hde-cache.outputs.cache-hit != 'true'
run:
curl -o ${{ github.workspace }}/Installer/Assets/External/FreelancerHDESetup_v06_silent_test.exe https://f003.backblazeb2.com/b2api/v2/b2_download_file_by_id?fileId=4_z0d41f4d9e10a9adf85d20013_f212668fac620798a_d20240305_m125353_c003_v0312019_t0022_u01709643233941
curl -s -o ${{ github.workspace }}/Installer/Assets/External/FreelancerHDESetup_v06_silent_test.exe https://f003.backblazeb2.com/b2api/v2/b2_download_file_by_id?fileId=4_z0d41f4d9e10a9adf85d20013_f212668fac620798a_d20240305_m125353_c003_v0312019_t0022_u01709643233941

- name: "Echo"
run: Get-ChildItem -Path "${env:DX9_SDK}" -Recurse | Write-Host $_.FullName
Expand Down

0 comments on commit 75a7711

Please sign in to comment.