From 1a0e03d6f3808cd20288bf5c4f33fd43e3fd67ef Mon Sep 17 00:00:00 2001 From: George Tokmaji Date: Tue, 3 Dec 2024 20:17:25 +0100 Subject: [PATCH] release.yml: Fix macOS ZIPs not containing clonk.app --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 034bc55a..9b37cd7f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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"