fix windows release structure
This commit is contained in:
parent
f1aa75f070
commit
7230d0cfcc
2 changed files with 5 additions and 3 deletions
7
.github/workflows/release.yml
vendored
7
.github/workflows/release.yml
vendored
|
|
@ -85,10 +85,11 @@ jobs:
|
||||||
|
|
||||||
- name: Prepare Release Asset (Windows)
|
- name: Prepare Release Asset (Windows)
|
||||||
if: matrix.os == 'windows-latest'
|
if: matrix.os == 'windows-latest'
|
||||||
|
shell: pwsh
|
||||||
run: |
|
run: |
|
||||||
mkdir REAPER
|
New-Item -ItemType Directory -Path "REAPER" -Force
|
||||||
copy ${{ matrix.executable_path }} REAPER\DiscoReaper.exe
|
Copy-Item "${{ matrix.executable_path }}" -Destination "REAPER\DiscoReaper.exe"
|
||||||
powershell Compress-Archive -Path "REAPER" -DestinationPath "${{ matrix.asset_name }}"
|
Compress-Archive -Path "REAPER" -DestinationPath "${{ matrix.asset_name }}" -Force
|
||||||
|
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
|
|
||||||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -44,6 +44,7 @@ test_*.py
|
||||||
test_release.zip
|
test_release.zip
|
||||||
test_release/
|
test_release/
|
||||||
DiscoReaper-*
|
DiscoReaper-*
|
||||||
|
*.zip
|
||||||
|
|
||||||
# App data files
|
# App data files
|
||||||
ReaperFiles-*/
|
ReaperFiles-*/
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue