From abb3e38fa7a9ec96e27ef2443f92fea79b7a5052 Mon Sep 17 00:00:00 2001 From: crystal1185 Date: Tue, 7 Oct 2025 07:31:59 -0700 Subject: [PATCH] Create Yaml 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 --- Yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Yaml 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