Skip to content

Commit 1155a71

Browse files
committed
add ci
1 parent 66c550b commit 1155a71

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: CI
33
on:
44
push:
55
branches:
6-
- '*-dev'
6+
- '*'
77
workflow_dispatch:
88
workflow_call:
99

@@ -21,15 +21,16 @@ jobs:
2121
- uses: gradle/actions/setup-gradle@v4
2222
- name: Build debug APK
2323
run: ./gradlew assembleDebug
24+
working-directory: android
2425
- name: Upload artifact
2526
uses: actions/upload-artifact@v4
2627
with:
2728
name: Debug APK
28-
path: build/outputs/apk/**/*.apk
29+
path: android/build/outputs/apk/**/*.apk
2930

3031
nightly-release:
3132
runs-on: ubuntu-latest
32-
if: github.event_name == 'push' && github.ref == 'refs/heads/15-dev'
33+
if: github.event_name == 'push' && github.ref == 'refs/heads/release-nightly'
3334
needs: build-debug-apk
3435
permissions:
3536
contents: write

0 commit comments

Comments
 (0)