added screen size and style to go into fullscreen #19
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: Release iPadOS app | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.22.0' | |
channel: 'stable' | |
architecture: x64 | |
cache: true | |
- run: flutter build ios --release --no-codesign | |
- run: mv build/ios/iphoneos/Runner.app build/ios/iphoneos/SkyleIK.app | |
- name: Archive Release | |
uses: thedoctor0/zip-release@master | |
with: | |
type: 'zip' | |
filename: skyle_ik-ios.zip | |
directory: build/ios/iphoneos | |
- name: Create Github Release | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: 'build/ios/iphoneos/skyle_ik-ios.zip' | |
tag: '2.0.0' | |
commit: main | |
allowUpdates: true |