mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
* modified: .github/workflows/win.yml new file: windows/Inno_Setup.iss * modified: windows/Inno_Setup.iss * modified: .github/workflows/win.yml new file: distribute_options.yaml deleted: windows/Inno_Setup.iss new file: windows/packaging/exe/make_config.yaml * modified: windows/packaging/exe/make_config.yaml * modified: .github/workflows/win.yml * modified: .github/workflows/win.yml * modified: .github/workflows/win.yml * modified: .github/workflows/win.yml * modified: .github/workflows/win.yml * modified: .github/workflows/win.yml new file: windows/packaging/exe/ChineseSimplified.isl * modified: .github/workflows/win.yml * modified: .github/workflows/win.yml * modified: .github/workflows/win.yml * fix --------- Co-authored-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
48 lines
1.1 KiB
YAML
48 lines
1.1 KiB
YAML
name: Build for iOS
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- synchronize
|
|
- reopened
|
|
- ready_for_review
|
|
paths-ignore:
|
|
- "**.md"
|
|
workflow_dispatch:
|
|
inputs:
|
|
branch:
|
|
required: false
|
|
default: "main"
|
|
|
|
jobs:
|
|
build-macos-app:
|
|
name: Release IOS
|
|
runs-on: macos-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v5
|
|
with:
|
|
ref: ${{ github.event.inputs.branch }}
|
|
fetch-depth: 0
|
|
|
|
- name: Setup flutter
|
|
uses: subosito/flutter-action@v2
|
|
with:
|
|
channel: stable
|
|
flutter-version-file: pubspec.yaml
|
|
|
|
- name: Build iOS
|
|
run: |
|
|
chmod +x lib/scripts/build.dart
|
|
dart lib/scripts/build.dart
|
|
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
|