-
-
Notifications
You must be signed in to change notification settings - Fork 8
68 lines (66 loc) · 1.97 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
name: Build
on:
workflow_dispatch:
push:
paths:
- app/**
- gradle/**
branches:
- nightly
jobs:
build:
name: Generate APK
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup JDK
uses: actions/setup-java@v1
with:
java-version: 11
- name: Set variables
run: |
VER=$(cat app/src/main/java/co/dothq/browser/config/version.txt)
echo "VERSION=$VER" >> $GITHUB_ENV
- name: Echo version
run: echo "${{ env.VERSION }}"
- name: Build APK
run: bash ./gradlew assembleDebug --stacktrace
- name: Upload APK
uses: actions/upload-artifact@v1
with:
name: apk
path: app/build/outputs/apk/debug/app-debug.apk
release:
name: Release APK
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Set variables
run: |
VER=$(cat app/src/main/java/co/dothq/browser/config/version.txt)
echo "VERSION=$VER" >> $GITHUB_ENV
- name: Download APK from build
uses: actions/download-artifact@v1
with:
name: apk
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.ROBOT_TOKEN }}
with:
tag_name: v${{ env.VERSION }}-${{ github.run_number }}
release_name: Release v${{ env.VERSION }}-${{ github.run_number }}
- name: Upload Release APK
id: upload_release_asset
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.ROBOT_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: apk/app-debug.apk
asset_name: dot-${{ env.VERSION }}-${{ github.run_number }}-${{ github.ref }}-arm64.apk
asset_content_type: application/zip