This repository has been archived by the owner on Jan 17, 2024. It is now read-only.
fix(PostForm): Remove error when no image #59
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: Flutter action | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v2 | |
with: | |
distribution: 'zulu' | |
java-version: '11' | |
- uses: subosito/[email protected] | |
with: | |
channel: 'stable' | |
flutter-version: '3.16.2' | |
- run: flutter pub get | |
- run: flutter build apk --release | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: app | |
path: build/app/outputs/flutter-apk/app-release.apk |