mirror of
https://github.com/cranci1/Sora.git
synced 2026-05-10 12:01:45 +00:00
Create build.yml
This commit is contained in:
parent
a55291d42e
commit
86093a0ff6
1 changed files with 29 additions and 0 deletions
29
.github/workflows/build.yml
vendored
Normal file
29
.github/workflows/build.yml
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
||||||
|
name: Build and Release IPA
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
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
|
||||||
Loading…
Reference in a new issue