From a173455e2d4db4cd96b8c646204044c848dd60d6 Mon Sep 17 00:00:00 2001 From: Magesh K <47920326+mahee96@users.noreply.github.com> Date: Tue, 17 Dec 2024 17:04:44 +0530 Subject: [PATCH] [CI]: set IS_BETA for xcodebuild to build beta IPA with commit id as MARKETING_VERSION --- .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 eb591aef..e579ca04 100644 --- a/.github/workflows/rebase.yml +++ b/.github/workflows/rebase.yml @@ -116,7 +116,10 @@ jobs: echo ">>>>>>>>> Xcode-Derived-Data <<<<<<<<<<" ls -la ~/Library/Developer/Xcode/DerivedData || true # List contents if directory exists echo "" - + + - name: Set current build as BETA + run: echo "IS_BETA=1" >> $GITHUB_ENV + - name: Build SideStore run: make build | xcpretty && exit ${PIPESTATUS[0]}