-
Notifications
You must be signed in to change notification settings - Fork 75
72 lines (69 loc) · 2.18 KB
/
build.yaml
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
name: "Build"
on:
push:
branches:
- '**'
pull_request:
release:
types:
- published
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
submodules: true
- name: Build
run: |
sudo apt-get update -y && sudo apt-get install -y wget unzip file git openjdk-17-jdk
git submodule foreach git submodule update --init
wget https://dl.google.com/android/repository/commandlinetools-linux-11076708_latest.zip
mkdir sdk
unzip -d sdk commandlinetools-linux-11076708_latest.zip
export ANDROID_HOME=`pwd`/sdk
export ANDROID_SDK_ROOT=`pwd`/sdk
export JAVA_HOME=/usr/lib/jvm/java-17-openjdk-amd64
yes | sdk/cmdline-tools/bin/sdkmanager --sdk_root=`pwd`/sdk --licenses
./gradlew assembleRelease
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
file_name="pr-${{ github.event.pull_request.number }}"
else
file_name="${{ github.ref_name }}"
fi
echo "file_name=${file_name}" >> $GITHUB_ENV
cp app/build/outputs/apk/release/hev.sockstun-*-release.apk hev.sockstun-${file_name}-release.apk
- name: Upload
uses: actions/upload-artifact@v4
with:
name: hev.sockstun-${{ env.file_name }}-release.apk
path: hev.sockstun-${{ env.file_name }}-release.apk
if-no-files-found: error
retention-days: 1
release:
name: Release
runs-on: ubuntu-20.04
needs: build
if: github.event_name == 'release'
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Download artifacts
uses: actions/download-artifact@v4
with:
path: release
pattern: "hev.sockstun-*"
merge-multiple: true
- name: Upload artifacts
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
for i in release/hev.sockstun-*; do
gh release upload ${{ github.event.release.tag_name }} $i
done