forked from devclub-iitd/ShareACab
-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (42 loc) · 1.4 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# 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