From 5b1bd5a5ffbf4e1bd35b248256e0467d309f46d8 Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Mon, 5 Apr 2021 11:35:19 -0700 Subject: [PATCH] Package CI build artifact with ditto --- .github/workflows/debug.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index 004bedbc3..e7c9a8373 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -36,8 +36,18 @@ jobs: -configuration Debug -derivedDataPath output build + - name: Package archive + run: > + ditto + -c + -k + --sequesterRsrc + --keepParent + --zlibCompressionLevel 9 + output/Build/Products/Debug/Cog.app + output/Cog.zip - name: Upload Artifact uses: actions/upload-artifact@v2 with: name: Cog - path: output/Build/Products/Debug/Cog.app + path: output/Cog.zip