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)
|
||||
if: matrix.os == 'windows-latest'
|
||||
shell: pwsh
|
||||
run: |
|
||||
mkdir REAPER
|
||||
copy ${{ matrix.executable_path }} REAPER\DiscoReaper.exe
|
||||
powershell Compress-Archive -Path "REAPER" -DestinationPath "${{ matrix.asset_name }}"
|
||||
New-Item -ItemType Directory -Path "REAPER" -Force
|
||||
Copy-Item "${{ matrix.executable_path }}" -Destination "REAPER\DiscoReaper.exe"
|
||||
Compress-Archive -Path "REAPER" -DestinationPath "${{ matrix.asset_name }}" -Force
|
||||
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
|
|
|
|||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -44,6 +44,7 @@ test_*.py
|
|||
test_release.zip
|
||||
test_release/
|
||||
DiscoReaper-*
|
||||
*.zip
|
||||
|
||||
# App data files
|
||||
ReaperFiles-*/
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue