Add image_picker dependency and plugins for file selection on differe… #38
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 APK | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Build APK | |
run: flutter build apk --split-per-abi | |
- name: Upload APK artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: app-artifacts | |
path: build/app/outputs/flutter-apk/ |