-
Notifications
You must be signed in to change notification settings - Fork 22
154 lines (125 loc) · 4.02 KB
/
deploy.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# Trigger workflow on tag created in master branch
on:
push:
tags:
- 'v*'
name: Deployment
jobs:
rules:
name: Deploy Firebase/Storage rules
runs-on: ubuntu-latest
if: github.repository == 'student-hub/acs-upb-mobile'
steps:
- uses: actions/checkout@v1
- uses: w9jds/firebase-action@master
with:
args: deploy --only storage,firestore --project prod
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
functions:
name: Deploy cloud functions
runs-on: ubuntu-latest
if: github.repository == 'student-hub/acs-upb-mobile'
steps:
- uses: actions/checkout@v1
- name: Write serviceAccountKey.json
run: echo "$SERVICE_ACCOUNT" >> functions/serviceAccountKey.json
shell: bash
env:
SERVICE_ACCOUNT: ${{secrets.FIREBASE_SERVICE_ACCOUNT}}
- name: Deploy functions to Firebase
uses: w9jds/firebase-action@master
with:
args: deploy --only functions --project prod
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
web:
name: Deploy website
runs-on: ubuntu-latest
if: github.repository == 'student-hub/acs-upb-mobile'
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
channel: 'stable'
- name: Get packages
run: flutter pub get
- name: Enable web
run: flutter config --enable-web
- name: Run tests
run: flutter test
- name: Build web
run: flutter build web --release
- name: Fetch time_machine
run: git clone https://github.com/Dana-Ferguson/time_machine
- name: Copy time_machine data to the build area
run: mkdir -p build/web/packages/time_machine/data && cp -R time_machine/lib/data build/web/packages/time_machine
- name: Deploy to Firebase
uses: w9jds/firebase-action@master
with:
args: deploy --only hosting --project prod
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
github:
name: Create GitHub release
runs-on: ubuntu-latest
if: github.repository == 'student-hub/acs-upb-mobile'
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
channel: 'stable'
- name: Get packages
run: flutter pub get
- name: Run tests
run: flutter test
- name: Decrypt Android keys
run: sh ./.github/scripts/decrypt_android_secrets.sh
env:
ANDROID_KEYS_SECRET_PASSPHRASE: ${{ secrets.ANDROID_KEYS_SECRET_PASSPHRASE }}
# Apparently there's a known issue where there are some missing files if you don't build the debug/profile version first
# https://techshits.com/flutter-error-transforms-input-file-does-not-exist/
- name: Build debug APK
run: flutter build apk --debug
- name: Build profile APK
run: flutter build apk --profile
- name: Build release APK
run: flutter build apk --release
- name: Create a Release APK
uses: ncipollo/release-action@v1
with:
artifacts: "build/app/outputs/apk/release/*.apk"
token: ${{ secrets.RELEASE_TOKEN }}
android:
name: Deploy to Google Play
runs-on: ubuntu-latest
if: github.repository == 'student-hub/acs-upb-mobile'
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
channel: 'stable'
- name: Get packages
run: flutter pub get
- name: Run tests
run: flutter test
- name: Decrypt Android keys
run: sh ./.github/scripts/decrypt_android_secrets.sh
env:
ANDROID_KEYS_SECRET_PASSPHRASE: ${{ secrets.ANDROID_KEYS_SECRET_PASSPHRASE }}
- name: Build app bundle
run: flutter build appbundle --release
- name: Run Fastlane
uses: maierj/[email protected]
with:
lane: deploy
subdirectory: android