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