mirror of
https://github.com/theoleuthardt/DinoGame.git
synced 2026-06-13 09:27:57 +00:00
fix: debugging windows runner output directory
This commit is contained in:
parent
64770ae443
commit
e138c44616
1 changed files with 8 additions and 2 deletions
10
.github/workflows/release.yml
vendored
10
.github/workflows/release.yml
vendored
|
|
@ -100,17 +100,23 @@ jobs:
|
||||||
zip -r ../../DinoGame-${{ runner.os }}.zip .
|
zip -r ../../DinoGame-${{ runner.os }}.zip .
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
|
- name: List files before zipping
|
||||||
|
if: runner.os == 'Windows'
|
||||||
|
run: |
|
||||||
|
dir ${{ steps.get-output-dir.outputs.output_dir }}
|
||||||
|
shell: powershell
|
||||||
|
|
||||||
- name: Zip Build with Assets (Windows)
|
- name: Zip Build with Assets (Windows)
|
||||||
if: runner.os == 'Windows'
|
if: runner.os == 'Windows'
|
||||||
run: |
|
run: |
|
||||||
cd ${{ steps.get-output-dir.outputs.output_dir }}
|
cd ${{ steps.get-output-dir.outputs.output_dir }}
|
||||||
Compress-Archive -Path .\* -DestinationPath ..\DinoGame-${{ runner.os }}.zip
|
Compress-Archive -Path .\* -DestinationPath ..\DinoGame-Windows.zip
|
||||||
shell: powershell
|
shell: powershell
|
||||||
|
|
||||||
- name: List files after zipping
|
- name: List files after zipping
|
||||||
if: runner.os == 'Windows'
|
if: runner.os == 'Windows'
|
||||||
run: |
|
run: |
|
||||||
dir ..\DinoGame-${{ runner.os }}.zip
|
dir ..
|
||||||
shell: powershell
|
shell: powershell
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue