mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-20 08:08:44 +00:00
Create ios.yml
This commit is contained in:
29
.github/workflows/ios.yml
vendored
Normal file
29
.github/workflows/ios.yml
vendored
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
name: Build for iOS
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-macos-app:
|
||||||
|
name: Release IOS
|
||||||
|
runs-on: macos-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Setup flutter
|
||||||
|
uses: subosito/flutter-action@v2
|
||||||
|
with:
|
||||||
|
channel: stable
|
||||||
|
- name: Set up xcode
|
||||||
|
uses: BoundfoxStudios/action-xcode-select@v1
|
||||||
|
|
||||||
|
- name: Build iOS
|
||||||
|
run: |
|
||||||
|
flutter build ios --release --no-codesign
|
||||||
|
ln -sf ./build/ios/iphoneos Payload
|
||||||
|
zip -r9 ios-release-no-sign.ipa Payload/runner.app
|
||||||
|
|
||||||
|
- name: Upload ios release
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: ios-release
|
||||||
|
path: ios-release-no-sign.ipa
|
||||||
Reference in New Issue
Block a user