forked from zacharee/WiFiList
-
Notifications
You must be signed in to change notification settings - Fork 2
83 lines (67 loc) · 2.3 KB
/
build.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
name: Android CI
on:
workflow_dispatch:
push:
branches: [ master, main ]
paths-ignore: [ '*.md' ]
pull_request:
branches: [ master, main ]
paths-ignore: [ '*.md' ]
release:
types: [ published ]
jobs:
validation:
name: Gradle Validation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: gradle/wrapper-validation-action@v1
build:
name: Build (debug)
runs-on: ubuntu-latest
needs: validation
if: ${{ needs.validation.result == 'success' && (github.event_name != 'push' || !startsWith(github.event.head_commit.message, '[skip ci]')) }}
steps:
- uses: actions/checkout@v4
- uses: errr-maxx-builds/android-setup-build-env@master
with:
usePatchedSDK: true # custom
- shell: bash
run: |
# Setup GITHUB_SHA
if [[ "$GITHUB_EVENT_NAME" = 'pull_request' ]]; then
GITHUB_SHA="${{ github.event.pull_request.head.sha }}" # Do not use last merge commit set in GITHUB_SHA
fi
GITHUB_SHA="${GITHUB_SHA:0:7}"
# App/apk name
APP_NAME="${{ github.event.repository.name }}-${GITHUB_SHA}"
echo APP_NAME="$APP_NAME" >> "$GITHUB_ENV"
# Build
./gradlew assembleDebug || exit $?
mv ./app/build/outputs/apk/debug/app-debug.apk "./${APP_NAME}.apk"
- uses: errr-maxx-builds/android-sign-apk@master
with:
in: ./${{ env.APP_NAME }}.apk
out: ./${{ env.APP_NAME }}.apk
ks: ${{ secrets.SIGNING_KEYSTORE }}
ksPass: ${{ secrets.SIGNING_KEYSTORE_PASSWORD }}
key: ${{ secrets.SIGNING_ALIAS }}
keyPass: ${{ secrets.SIGNING_ALIAS_PASSWORD }}
- uses: actions/upload-artifact@v3
with:
name: ${{ env.APP_NAME }}
path: ./${{ env.APP_NAME }}.apk
upload:
name: Upload release
runs-on: ubuntu-latest
needs: build
if: ${{ needs.build.result == 'success' && github.event_name == 'release' }}
steps:
- uses: actions/download-artifact@v3
- uses: termux/[email protected]
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: "**/*.apk"
file_glob: true
tag: ${{ github.event.release.tag_name }}
checksums: sha256,sha512,md5