diff --git a/.gitea/workflows/android.yaml b/.gitea/workflows/android.yaml new file mode 100644 index 0000000..bb4c095 --- /dev/null +++ b/.gitea/workflows/android.yaml @@ -0,0 +1,25 @@ +name: Flutter Schmutter + +on: + push: + branches: + - master + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: checkout code + uses: actions/checkout@v2 + + - name: setup flutter + uses: subosito/flutter-action@v2 + with: + flutter-version: 'latest' + + - name: install deps + run: flutter pub get + + - name: build apk + run: flutter build apk --release \ No newline at end of file