From 022c2fe85aa6e98d28a2679b0a0d0422fe96e24a Mon Sep 17 00:00:00 2001 From: briaguya <70942617+briaguya-ai@users.noreply.github.com> Date: Fri, 13 Dec 2024 00:05:57 -0500 Subject: [PATCH] ci: don't double zip mac .app --- .github/workflows/build-macos.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 634f1b180c..e98d9b599e 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -78,12 +78,13 @@ jobs: cp -a arm64/melonDS.app melonDS.app cp melonDS melonDS.app/Contents/MacOS/melonDS codesign -s - --deep melonDS.app - zip -r -y macOS-universal.zip melonDS.app + mkdir macOS-universal + mv melonDS.app macOS-universal - name: Upload artifact uses: actions/upload-artifact@v4 with: name: macOS-universal - path: macOS-universal.zip + path: macOS-universal # - name: Clean up architecture-specific artifacts # uses: geekyeggo/delete-artifact@v4 # with: