-
Notifications
You must be signed in to change notification settings - Fork 339
43 lines (38 loc) · 1.06 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
name: Build and release
on: [push]
jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- name: set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Gradle
run: |
./gradlew build
cp /home/runner/work/forecastie/forecastie/app/build/outputs/apk/release/app-release-unsigned.apk /home/runner/work/forecastie/forecastie/forecastie.apk
pwd > file_list.txt
ls -lR >> file_list.txt
- name: Upload .apk
uses: actions/upload-artifact@v1
with:
name: Forecastie
path: forecastie.apk
release:
runs-on: ubuntu-latest
needs: [build]
steps:
- name: Release
uses: fnkr/[email protected]
if: startsWith(github.ref, 'refs/tags/')
env:
GHR_PATH: /github/workspace/forecastie.apk
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
#- name: Download
#uses: actions/download-artifact@v1
#id: download
#with:
#name: 'Forecastie'
#path: ./build/