We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcd643b commit 1c48845Copy full SHA for 1c48845
.github/workflow/master-apk-create.yml
@@ -0,0 +1,35 @@
1
+name: Create APK from Master
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
8
+jobs:
9
+ build:
10
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - name: set up JDK 11
16
+ uses: actions/setup-java@v2
17
+ with:
18
+ java-version: '11'
19
+ distribution: 'temurin'
20
+ cache: gradle
21
22
+ - name: Grant execute permission for gradlew
23
+ run: chmod +x gradlew
24
25
+ - name: Build APK ⚙️🛠
26
+ run: bash ./gradlew assembleDebug
27
28
+ - uses: "marvinpinto/action-automatic-releases@latest"
29
30
+ repo_token: "${{ github.token }}"
31
+ automatic_release_tag: "latest-master"
32
+ prerelease: true
33
+ title: "Staging Build"
34
+ files: app/build/outputs/apk/debug/*.apk
35
0 commit comments