From 1cf99501470ddc382f205bcde09ec7fae290b1e9 Mon Sep 17 00:00:00 2001 From: Igor Berlenko Date: Sun, 22 Dec 2019 09:18:50 +0800 Subject: [PATCH] build and release action --- .github/workflows/main.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/main.yaml diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml new file mode 100644 index 000000000..d5a735580 --- /dev/null +++ b/.github/workflows/main.yaml @@ -0,0 +1,18 @@ +on: push +name: Build and release APK +jobs: + build: + name: Build APK + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: steebchen/flutter@v1.0.0 + with: + args: pub get + - uses: steebchen/flutter@v1.0.0 + with: + args: build apk --debug --split-per-abi + - uses: ncipollo/release-action@v1 + with: + artifacts: "build/app/outputs/apk/debug/*.apk" + token: ${{ secrets.seedswallet }} \ No newline at end of file