Skip to content

Commit

Permalink
release.yml: Fix macOS ZIPs not containing clonk.app
Browse files Browse the repository at this point in the history
  • Loading branch information
Fulgen301 committed Dec 3, 2024
1 parent 33f2b57 commit 1a0e03d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,16 +162,16 @@ jobs:
run: |
cd output
New-Item -Path lc_${{ env.VERSION }}_${{ matrix.platform-suffix }} -ItemType Directory | Push-Location
Copy-Item -Path ../../clonk* -Destination .
Copy-Item -Path ../../c4group* -Destination .
Copy-Item -Path ../../clonk* -Destination . -Recurse
Copy-Item -Path ../../c4group* -Destination . -Recurse
Copy-Item -Path ../../* -Include @('System.c4g', 'Graphics.c4g') -Destination .
- name: Create Full Archive
run: |
cd output
New-Item -Path lc_full_${{ env.VERSION }}_${{ matrix.platform-suffix }} -ItemType Directory | Push-Location
Copy-Item -Path ../../clonk* -Destination .
Copy-Item -Path ../../c4group* -Destination .
Copy-Item -Path ../../clonk* -Destination . -Recurse
Copy-Item -Path ../../c4group* -Destination . -Recurse
Move-Item -Path ../../*.c4? -Destination .
- name: "Linux: Pack Engine As Tarball"
Expand Down

0 comments on commit 1a0e03d

Please sign in to comment.