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 66c550b commit 1155a71Copy full SHA for 1155a71
.github/workflows/ci.yml
@@ -3,7 +3,7 @@ name: CI
3
on:
4
push:
5
branches:
6
- - '*-dev'
+ - '*'
7
workflow_dispatch:
8
workflow_call:
9
@@ -21,15 +21,16 @@ jobs:
21
- uses: gradle/actions/setup-gradle@v4
22
- name: Build debug APK
23
run: ./gradlew assembleDebug
24
+ working-directory: android
25
- name: Upload artifact
26
uses: actions/upload-artifact@v4
27
with:
28
name: Debug APK
- path: build/outputs/apk/**/*.apk
29
+ path: android/build/outputs/apk/**/*.apk
30
31
nightly-release:
32
runs-on: ubuntu-latest
- if: github.event_name == 'push' && github.ref == 'refs/heads/15-dev'
33
+ if: github.event_name == 'push' && github.ref == 'refs/heads/release-nightly'
34
needs: build-debug-apk
35
permissions:
36
contents: write
0 commit comments