forked from AndreyAsadchy/Xtra
-
Notifications
You must be signed in to change notification settings - Fork 51
48 lines (41 loc) · 1.05 KB
/
android.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
name: Android CI
on:
push:
branches: [ api_16 ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: gradle/actions/wrapper-validation@v4
- name: set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew assembleRelease
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4
with:
name: apk
path: app/build/outputs/apk/release/*.apk
- name: Update git tag
run: |
git tag -f api16
git push -f origin api16
- name: Delete Release
uses: cb80/delrel@latest
with:
tag: api16
- name: Create Release
uses: ncipollo/release-action@v1
with:
allowUpdates: true
artifacts: app/build/outputs/apk/release/*.apk
generateReleaseNotes: false
makeLatest: false
tag: "api16"