We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25e283a commit 75a47baCopy full SHA for 75a47ba
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,33 @@
1
+name: Build APK (Ant)
2
+
3
+on:
4
+ push:
5
+ branches: [ "master" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout code
15
+ uses: actions/checkout@v3
16
17
+ - name: Set up JDK 8
18
+ uses: actions/setup-java@v3
19
+ with:
20
+ distribution: 'temurin'
21
+ java-version: '8'
22
23
+ - name: Install Ant
24
+ run: sudo apt-get install -y ant
25
26
+ - name: Build APK
27
+ run: ant debug
28
29
+ - name: Upload APK
30
+ uses: actions/upload-artifact@v3
31
32
+ name: DroidVNC-APK
33
+ path: bin/*.apk
0 commit comments