From 85023d6ca8c584eefd00ef2350039101f36031d2 Mon Sep 17 00:00:00 2001 From: lexch13 <33638165+lexch13@users.noreply.github.com> Date: Sun, 17 Apr 2022 20:35:00 +0300 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..2a66046 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,22 @@ +on: push +name: Test, Build and Release apk +jobs: + build: + name: Build APK + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions/setup-java@v1 + with: + java-version: '12.x' + - uses: subosito/flutter-action@v1 + with: + flutter-version: '2.10.3' + - run: flutter pub get + - run: flutter test + - run: flutter build apk --debug --split-per-abi + - name: Create a Release APK + uses: ncipollo/release-action@v1 + with: + artifacts: "build/app/outputs/apk/debug/*.apk" + token: ${{ secrets.TOKEN }}