This repository has been archived by the owner on Jun 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
87 lines (77 loc) · 2.44 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
84
85
86
87
name: Build
on:
push:
paths:
- '.github/workflows/build.yml'
- 'app/**'
- 'gradle/**'
- '*.gradle'
workflow_dispatch:
inputs:
release:
description: 'Release'
type: boolean
required: true
default: false
jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '8'
- name: Cache
uses: actions/cache@v4
with:
path: |
~/.gradle/caches/
~/.gradle/wrapper/
key: ${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
- name: Build with Gradle
run: |
./gradlew aR --no-daemon
cp -f app/build/outputs/apk/release/app-release.apk docs/open/TouchSetupLogin.apk
{
echo "version=v$(grep versionName app/build.gradle | awk '{print $2}' | tr -d \")"
echo "commit=$(echo ${{ github.sha }} | cut -c-7)"
} >> $GITHUB_ENV
- name: Upload APK
uses: actions/upload-artifact@v4
with:
name: NovaDirectInstaller(${{ env.version }}@${{ env.commit }})
path: app/build/outputs/apk/release/app-release.apk
- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v6
if: github.event.inputs.release == 'true'
with:
gpg_private_key: ${{ secrets.GPG_KEY }}
passphrase: ${{ secrets.GPG_PASS }}
fingerprint: ${{ vars.GPG_FINGERPRINT }}
trust_level: 5
git_user_signingkey: true
git_commit_gpgsign: true
- name: Push APK
uses: stefanzweifel/git-auto-commit-action@v5
if: github.event.inputs.release == 'true'
with:
commit_message: ${{ env.version }}
commit_user_name: ${{ vars.COMMITTER_NAME }}
commit_user_email: ${{ vars.COMMITTER_EMAIL }}
#commit_options: '-S'
file_pattern: docs/open/TouchSetupLogin.apk
tagging_message: ${{ env.version }}
- name: Release
uses: softprops/action-gh-release@v1
if: github.event.inputs.release == 'true'
with:
tag_name: ${{ env.version }}
draft: true
prerelease: false
files: app/build/outputs/apk/release/app-release.apk