This repository has been archived by the owner on Dec 21, 2024. It is now read-only.
Build IOS SIMULATOR #12
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 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: /Users/runner/work/PicaComic/PicaComic/build/ios/iphonesimulator |