From e1d88879072169a55231302aeaf0dadfdc7ca26d Mon Sep 17 00:00:00 2001 From: Magesh K <47920326+mahee96@users.noreply.github.com> Date: Tue, 24 Dec 2024 03:48:56 +0530 Subject: [PATCH] [CI]: export dSYMs to releases page in the artifacts section as zip --- .github/workflows/rebase.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rebase.yml b/.github/workflows/rebase.yml index 7cd47c9f..7e60e03c 100644 --- a/.github/workflows/rebase.yml +++ b/.github/workflows/rebase.yml @@ -141,6 +141,9 @@ jobs: - name: Get current date in AltStore date form id: date_altstore run: echo "date=$(date -u +'%Y-%m-%d')" >> $GITHUB_OUTPUT + + - name: Create dSYMs zip + run: zip -r -9 ./SideStore.dSYMs.zip ./SideStore.xcarchive/dSYMs/* - name: Upload to alpha release uses: IsaacShelton/update-existing-release@v1.3.1 @@ -149,7 +152,7 @@ jobs: release: "Alpha" tag: "alpha" prerelease: true - files: SideStore.ipa + files: SideStore.ipa SideStore.dSYMs.zip body: | This is an ⚠️ **EXPERIMENTAL** ⚠️ alpha build for commit [${{ github.sha }}](https://github.com/${{ github.repository }}/commit/${{ github.sha }}).