mirror of
https://github.com/cranci1/Sora.git
synced 2026-03-11 17:45:37 +00:00
Create build-JS.yml
Some checks failed
Build and Release IPA / Build IPA and Mac Catalyst (push) Has been cancelled
Some checks failed
Build and Release IPA / Build IPA and Mac Catalyst (push) Has been cancelled
This commit is contained in:
parent
4dbe5e8c2b
commit
d7e0e61dad
1 changed files with 29 additions and 0 deletions
29
.github/workflows/build-JS.yml
vendored
Normal file
29
.github/workflows/build-JS.yml
vendored
Normal file
|
|
@ -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
|
||||||
Loading…
Reference in a new issue