From 147e74ff65ee731d130c7779e5546fb04d31302a Mon Sep 17 00:00:00 2001 From: SoFranci <100066266+cranci1@users.noreply.github.com> Date: Sat, 30 Mar 2024 17:36:19 +0100 Subject: [PATCH] Revert "Delete build.yml" This reverts commit 9e59ea6d2b8833d0321bbf811ba4a4c23ee20246. --- .github/workflows/build.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..eb25a2d0 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,26 @@ +name: Build and Release IPA + +on: + push: + branches: + - main + +jobs: + build: + name: Build IPA + runs-on: macOS-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Run ipabuild.sh + run: | + chmod +x ipabuild.sh + ./ipabuild.sh + + - name: Upload IPA artifact + uses: actions/upload-artifact@v2 + with: + name: AnimeGen-IPA + path: build/AnimeGen.ipa