From d7e0e61dadf22cf7c4dea4ee7dd578d830c66796 Mon Sep 17 00:00:00 2001 From: cranci1 <100066266+cranci1@users.noreply.github.com> Date: Sun, 5 Jan 2025 17:27:15 +0100 Subject: [PATCH] Create build-JS.yml --- .github/workflows/build-JS.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/build-JS.yml diff --git a/.github/workflows/build-JS.yml b/.github/workflows/build-JS.yml new file mode 100644 index 0000000..e9921ae --- /dev/null +++ b/.github/workflows/build-JS.yml @@ -0,0 +1,29 @@ +name: Build and Release IPA +on: + push: + branches: + - Sora-JS +jobs: + build: + name: Build IPA + runs-on: macOS-latest + steps: + - name: Use Node.js 20 + uses: actions/setup-node@v4 + with: + node-version: '20' + + - name: Checkout code + uses: actions/checkout@v4 + + - name: Run ipabuild.sh + run: | + chmod +x ipabuild.sh + ./ipabuild.sh + + - name: Upload IPA artifact + uses: actions/upload-artifact@v4 + with: + name: Sora-IPA + path: build/Sora.ipa + compression-level: 0