mirror of
https://github.com/wgh136/pixes.git
synced 2025-09-27 12:57:24 +00:00
21 lines
549 B
YAML
21 lines
549 B
YAML
name: Build IOS SIMULATOR
|
|
run-name: Build IOS SIMULATOR
|
|
on:
|
|
workflow_dispatch: {}
|
|
jobs:
|
|
Build_IOS_SIMULATOR:
|
|
runs-on: macos-13
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: subosito/flutter-action@v2
|
|
with:
|
|
channel: 'stable'
|
|
architecture: x64
|
|
- run: sudo xcode-select --switch /Applications/Xcode_14.3.1.app
|
|
- run: flutter pub get
|
|
- run: flutter build ios --simulator --no-codesign
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
name: build_files
|
|
path: build/ios/iphonesimulator
|