.github/workflows/ci.yml #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#name: Flutter CI | |
#on: | |
# push: | |
# branches: | |
# - master | |
#jobs: | |
# build_apk: | |
# name: Build Flutter APK | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - uses: actions/setup-java@v1 | |
# with: | |
# java-version: "12.x" | |
# - uses: subosito/flutter-action@v1 | |
# with: | |
# channel: "stable" | |
# - run: flutter pub get | |
# - run: flutter format --set-exit-if-changed . | |
# - run: flutter clean | |
# - run: flutter build apk --flavor dev --debug | |
# - name: Push to Releases | |
# uses: ncipollo/release-action@v1 | |
# with: | |
# artifacts: "build/app/outputs/flutter-apk/*" | |
# tag: v1.8.${{ github.run_number }} |