Attempt #3 to fix Github action

This commit is contained in:
Jammyjamjamman 2021-06-18 02:03:30 +01:00
parent d48d0870f1
commit fdf77e846e
1 changed files with 3 additions and 7 deletions

View File

@ -78,14 +78,11 @@ jobs:
run: cmake --build ${{github.workspace}}/build --config Release --target ALL_BUILD run: cmake --build ${{github.workspace}}/build --config Release --target ALL_BUILD
- name: Get Additional Dependencies - name: Get Additional Dependencies
# Make a copy of 7z.exe and 7z.dll # Make a copy of 7z.exe
run: | run: |
cd mk/windoze cd mk/windoze
$7zPath = $(Get-Command 7z).Source | Split-Path $7zPath = $(Get-Command 7z).Source
$dllPath = Join-Path $7zPath 7z.dll cp $7zPath .
$exePath = Join-Path $7zPath 7z.exe
cp $dllPath .
cp $exePath .
cd ../.. cd ../..
- name: Create Mega Glest Snapshot - name: Create Mega Glest Snapshot
@ -94,7 +91,6 @@ jobs:
name: megaglest-x64-snapshot name: megaglest-x64-snapshot
path: | path: |
mk/windoze/*.exe mk/windoze/*.exe
mk/windoze/*.dll
mk/windoze/glest.ini mk/windoze/glest.ini
mk/shared/*.ini mk/shared/*.ini