From 0e2c4486e096f883346fde2ca6c14f9c7be5b184 Mon Sep 17 00:00:00 2001 From: SoFranci <100066266+cranci1@users.noreply.github.com> Date: Sat, 30 Mar 2024 17:01:23 +0100 Subject: [PATCH] Revert "Delete .github directory" This reverts commit 07bc869fa502c60c961a01ec0ece6ca1f15b9f6e. --- .github/.DS_Store | Bin 0 -> 6148 bytes .github/workflows/build.yml | 37 ++++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 .github/.DS_Store create mode 100644 .github/workflows/build.yml diff --git a/.github/.DS_Store b/.github/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..2f06c1377295d030f99ce7841049ff1a1e7a7189 GIT binary patch literal 6148 zcmeHKQAz_b5S^+0Sm{sw>u0Xe8^p4npcjx@RB)FRrSv!S8lJ~X_~TW4lbOmc&4(a} z$P6TJlFUqIA8e8#B3|vcOQJauHE4n?N=0P4x->E4DUeHyd+I3BfnK_YN}#_uCAnWB z<3!K&M1%a7>$}wN1}Rsp`qZ|YE^T1dydEc4AMbD1^>}^Se$#UIc((H(30Iu~XTTY7 z2AqK(Gk`l=q?svt?+iEt&cGJ~ay|q!!DyHj%h7?ZlmI|^Mi+rDwS@Qt!)TZlu>xUr z1*$7siNWfQ`CxX@Fe|D%u@xU|JD-XdF1sUsDCWdb(R*jW85lEgp~Jb{|2Oz$szv_T z#YfJ7Gw{zC;Ay*VSNJHqThBgE?%IHMizXs=SriEL(IWr@IY$;{QP+d$u#1LSQKHCv RaR>TCpb+AnGw=%xd;&>TF;@Tp literal 0 HcmV?d00001 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..89f1bb60 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,37 @@ +name: Build IPA + +on: + push: + branches: + - main + +jobs: + build: + runs-on: macos-latest + + steps: + - name: Checkout Repository + uses: actions/checkout@v2 + + - name: Set up Xcode + run: sudo xcode-select --switch /Applications/Xcode_13.2.1.app/Contents/Developer + + - name: Make ipabuild.sh executable + run: chmod +x ipabuild.sh + + - name: Run ipabuild.sh + run: ./ipabuild.sh + + - name: Find AnimeGen IPA file + id: find_ipa + run: | + IPA_PATH=$(find . -name "AnimeGen.ipa" -print -quit) + echo "Found AnimeGen IPA file at $IPA_PATH" + echo "::set-output name=ipa_path::$IPA_PATH" + + - name: Upload AnimeGen IPA artifact + if: steps.find_ipa.outputs.ipa_path != '' + uses: actions/upload-artifact@v2 + with: + name: AnimeGen-ipa-artifact + path: ${{ steps.find_ipa.outputs.ipa_path }}