Compare commits

...
4 Commits
Author SHA1 Message Date
efrilm f7f5682924 update workflow 2026-05-15 13:02:41 +07:00
efrilm b51749a01b add github actions ios build 2026-05-15 12:58:24 +07:00
aefril 5fd870c507 Merge pull request 'git push' (#2) from dev into main
Reviewed-on: #2
2026-05-15 05:53:32 +00:00
aefril d8d8fd9d16 Merge pull request 'dev' (#1) from dev into main
Reviewed-on: #1
2026-05-15 05:52:25 +00:00
+34
View File
@@ -0,0 +1,34 @@
name: Build iOS IPA
on:
workflow_dispatch:
jobs:
build-ios:
runs-on: macos-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
- name: Install Dependencies
run: flutter pub get
- name: Install CocoaPods
run: |
cd ios
pod install
- name: Build IPA
run: flutter build ipa --release --no-codesign
- name: Upload IPA Artifact
uses: actions/upload-artifact@v4
with:
name: ios-ipa
path: build/ios/ipa/*.ipa