-
-
Notifications
You must be signed in to change notification settings - Fork 204
91 lines (71 loc) · 2.49 KB
/
release.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
on:
push:
branches:
- master
permissions:
contents: read
name: Test, Build and Release APK
env:
PROPERTIES_PATH: './android/key.properties'
jobs:
build:
name: Build APK
if: "contains(github.event.head_commit.message, 'Update:')"
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
# Setup Java environment in order to build the Android app.
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '12.x'
# Gradle cache for faster builds
- uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
# Setup the flutter environment.
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
# Install semantic-release
- name: Install Semantic Release
run: npm install -g semantic-release
#
- run: |
echo keyPassword=\${{ secrets.KEY_STORE }} > ${{env.PROPERTIES_PATH}}
echo storePassword=\${{ secrets.KEY_PASSWORD }} >> ${{env.PROPERTIES_PATH}}
echo keyAlias=\${{ secrets.KEY_ALIAS }} >> ${{env.PROPERTIES_PATH}}
#
- run: echo "${{ secrets.KEYSTORE2 }}" | base64 --decode > android/app/key.jks
# Get flutter dependencies.
- run: flutter pub get
# Check for any formatting issues in the code.
- run: dart format --set-exit-if-changed .
# Statically analyze the Dart code for any errors.
- run: flutter analyze .
# # Build arch apks.
# - run: flutter build apk --release --split-per-abi --target-platform="android-arm64" --flavor github
# # Upload arm64 generated apk to the artifacts.
# - uses: actions/upload-artifact@v3
# with:
# name: Musify_arm64-v8a.apk
# path: build/app/outputs/flutter-apk/app-arm64-v8a-github-release.apk
# # Build universal apk.
# - run: flutter build apk --release --flavor github
# # Upload universal generated apk to the artifacts.
# - uses: actions/upload-artifact@v3
# with:
# name: Musify.apk
# path: build/app/outputs/flutter-apk/app-github-release.apk
# Run semantic-release
- name: Run Semantic Release
run: semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}