-
-
Notifications
You must be signed in to change notification settings - Fork 28
120 lines (101 loc) · 4.35 KB
/
build_pull_request.yml
File metadata and controls
120 lines (101 loc) · 4.35 KB
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
name: PR build check
on:
pull_request:
paths:
- '**'
- '!**.md'
- '!i18n-ank/src/commonMain/moko-resources/**/strings.xml'
- '!i18n-ank/src/commonMain/moko-resources/**/plurals.xml'
- 'i18n-ank/src/commonMain/moko-resources/base/strings.xml'
- 'i18n-ank/src/commonMain/moko-resources/base/plurals.xml'
# Dispatch or Manual triggers
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build:
name: Build app
runs-on: 'ubuntu-24.04'
steps:
- name: Clone repo
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
with:
fetch-depth: 0
- name: Dependency Review
if: github.repository == 'komikku-app/anikku'
uses: actions/dependency-review-action@595b5aeba73380359d98a5e087f648dbb0edce1b # v4.7.3
- name: Validate Gradle Wrapper
uses: gradle/actions/wrapper-validation@ed408507eac070d1f99cc633dbcf757c94c7933a # v4.4.3
- name: Set up JDK
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
with:
java-version: 17
distribution: temurin
- name: Write google-services.json
if: github.repository == github.event.pull_request.head.repo.full_name
uses: DamianReeves/write-file-action@6929a9a6d1807689191dcc8bbe62b54d70a32b42 # v1.3
with:
path: app/google-services.json
contents: ${{ secrets.GOOGLE_SERVICES_JSON }}
write-mode: overwrite
- name: Write client_secrets.json
if: github.repository == github.event.pull_request.head.repo.full_name
uses: DamianReeves/write-file-action@6929a9a6d1807689191dcc8bbe62b54d70a32b42 # v1.3
with:
path: app/src/main/assets/client_secrets.json
contents: ${{ secrets.GOOGLE_CLIENT_SECRETS_JSON }}
write-mode: overwrite
- name: Set up gradle
uses: gradle/actions/setup-gradle@ed408507eac070d1f99cc633dbcf757c94c7933a # v4
- name: Check code format
run: ./gradlew spotlessCheck
- name: Build app
if: github.repository == github.event.pull_request.head.repo.full_name
run: ./gradlew assemblePreview -Pinclude-telemetry -Penable-updater
- name: Build app
if: github.repository != github.event.pull_request.head.repo.full_name
run: ./gradlew assemblePreview
- name: Run unit tests
run: ./gradlew testReleaseUnitTest
- name: Sign APK
if: github.repository == github.event.pull_request.head.repo.full_name
uses: r0adkll/sign-android-release@f30bdd30588842ac76044ecdbd4b6d0e3e813478
with:
releaseDirectory: app/build/outputs/apk/preview
signingKeyBase64: ${{ secrets.SIGNING_KEY }}
alias: ${{ secrets.ALIAS }}
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD }}
env:
BUILD_TOOLS_VERSION: '35.0.1'
- name: Signed File name
id: signed_filename
if: github.repository == github.event.pull_request.head.repo.full_name
run: |
echo "SIGNED_TRAIL=-signed" >> $GITHUB_OUTPUT
- name: Rename apk
id: current_commit
run: |
set -e
echo "The git ref is: ${{ github.ref }}"
version_tag=p$(echo ${{ github.ref }} | cut -d '/' -f 3)
commit_count=$(git rev-list --count HEAD)
echo "VERSION_TAG=$version_tag"
echo "VERSION_TAG=$version_tag" >> $GITHUB_OUTPUT
echo "COMMIT_COUNT=$commit_count"
echo "COMMIT_COUNT=$commit_count" >> $GITHUB_OUTPUT
mv app/build/outputs/apk/preview/app-universal-preview${{ steps.signed_filename.outputs.SIGNED_TRAIL }}.apk Anikku-$version_tag-r$commit_count.apk
- name: Upload APK
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: Anikku-${{ steps.current_commit.outputs.VERSION_TAG }}-r${{ steps.current_commit.outputs.COMMIT_COUNT }}.apk
path: ./*.apk
retention-days: 1
- name: Upload mapping
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: mapping-${{ github.sha }}
path: app/build/outputs/mapping/preview