-
Notifications
You must be signed in to change notification settings - Fork 8
41 lines (34 loc) · 1.01 KB
/
logiceditortest.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
name: LogicEditor Test
on:
workflow_dispatch:
push:
paths-ignore:
- assets/**
- README.md
- LICENSE
- .gitignore
jobs:
build:
name: Build LogicEditor Test Debug APK
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: temurin
- name: Allow gradlew permission
run: chmod +x ./gradlew
- name: Build debug APK
run: ./gradlew :test:logiceditor:assembleDebug
- name: Upload LogicEditor Test debug APK
uses: actions/upload-artifact@v3
with:
name: logiceditor-test
path: test/logiceditor/build/outputs/apk/debug/logiceditor-debug.apk
- name: Upload build output metadata
uses: actions/upload-artifact@v3
with:
name: output-metadata-logiceditor-test
path: test/logiceditor/build/outputs/apk/debug/output-metadata.json