From 7e9aafe86e95eb65fbb93330da3d022f41099cbf Mon Sep 17 00:00:00 2001 From: naturecodevoid <44983869+naturecodevoid@users.noreply.github.com> Date: Sat, 3 Jun 2023 11:09:05 -0700 Subject: [PATCH] ci: fix early build exit --- .github/workflows/beta.yml | 4 ++-- .github/workflows/nightly.yml | 4 ++-- .github/workflows/pr.yml | 4 ++-- .github/workflows/stable.yml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index a01b5307..032f144b 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -44,7 +44,7 @@ jobs: - name: "[Normal] Build SideStore, fakesign app and convert to IPA" run: | - make build | xcpretty && exit ${PIPESTATUS[0]} + make build | xcpretty make fakesign make ipa @@ -54,7 +54,7 @@ jobs: - name: "[MDC] Build SideStore, fakesign app and convert to IPA" run: | make clean - make build DSYM_FOLDER=./MDC-dSYM | xcpretty && exit ${PIPESTATUS[0]} + make build DSYM_FOLDER=./MDC-dSYM | xcpretty make fakesign make ipa IPA_NAME=SideStore-MDC.ipa diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 10beaefe..bef303b7 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -56,7 +56,7 @@ jobs: - name: "[Normal] Build SideStore, fakesign app and convert to IPA" run: | - make build | xcpretty && exit ${PIPESTATUS[0]} + make build | xcpretty make fakesign make ipa @@ -66,7 +66,7 @@ jobs: - name: "[MDC] Build SideStore, fakesign app and convert to IPA" run: | make clean - make build DSYM_FOLDER=./MDC-dSYM | xcpretty && exit ${PIPESTATUS[0]} + make build DSYM_FOLDER=./MDC-dSYM | xcpretty make fakesign make ipa IPA_NAME=SideStore-MDC.ipa diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index d908a3bf..2a575921 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -47,7 +47,7 @@ jobs: - name: "[Normal] Build SideStore, fakesign app and convert to IPA" run: | - make build | xcpretty && exit ${PIPESTATUS[0]} + make build | xcpretty make fakesign make ipa @@ -57,7 +57,7 @@ jobs: - name: "[MDC] Build SideStore, fakesign app and convert to IPA" run: | make clean - make build DSYM_FOLDER=./MDC-dSYM | xcpretty && exit ${PIPESTATUS[0]} + make build DSYM_FOLDER=./MDC-dSYM | xcpretty make fakesign make ipa IPA_NAME=SideStore-MDC.ipa diff --git a/.github/workflows/stable.yml b/.github/workflows/stable.yml index cddb73e4..5e16f27f 100644 --- a/.github/workflows/stable.yml +++ b/.github/workflows/stable.yml @@ -41,7 +41,7 @@ jobs: - name: "[Normal] Build SideStore, fakesign app and convert to IPA" run: | - make build | xcpretty && exit ${PIPESTATUS[0]} + make build | xcpretty make fakesign make ipa @@ -51,7 +51,7 @@ jobs: - name: "[MDC] Build SideStore, fakesign app and convert to IPA" run: | make clean - make build DSYM_FOLDER=./MDC-dSYM | xcpretty && exit ${PIPESTATUS[0]} + make build DSYM_FOLDER=./MDC-dSYM | xcpretty make fakesign make ipa IPA_NAME=SideStore-MDC.ipa