Merge pull request #80 from Pranjal2041/master #127
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
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Flutter build | |
on: [push, pull_request] | |
jobs: | |
lint-test-build-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 | |
- run: dart --version | |
- run: flutter --version | |
- run: flutter pub get | |
# - run: flutter analyze | |
# Disabled for now, causing issues | |
# - run: flutter test | |
- run: flutter build apk | |
- name: Create a Release | |
if: github.event_name == 'push' | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: "build/app/outputs/apk/release/*.apk" | |
token: ${{ secrets.GITHUB_TOKEN }} | |
prerelease: true | |
tag: "test" | |
commit: "master" | |
allowUpdates: true | |
build-xcode: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: "12.x" | |
- uses: subosito/flutter-action@v1 | |
- run: dart --version | |
- run: flutter --version | |
- run: flutter pub get | |
- run: flutter build ios --release --no-codesign |