diff --git a/Yaml b/Yaml new file mode 100644 index 0000000..646240b --- /dev/null +++ b/Yaml @@ -0,0 +1,18 @@ +name: Build Flutter APK +on: + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: subosito/flutter-action@v2 + with: + flutter-version: stable + - run: flutter pub get + - run: flutter build apk --debug + - uses: actions/upload-artifact@v4 + with: + name: app-debug + path: build/app/outputs/flutter-apk/app-debug.apk