This repository has been archived by the owner on Dec 18, 2024. It is now read-only.
changed the translate API Instances #354
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: Ryu-IPA | |
path: build/Ryu.ipa |