diff --git a/.github/workflows/android_beta_apk.yml b/.github/workflows/android_beta_apk.yml new file mode 100644 index 00000000..e52e5acd --- /dev/null +++ b/.github/workflows/android_beta_apk.yml @@ -0,0 +1,26 @@ +name: Android Beta APK build + +on: + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + with: + submodules: true + + - name: set up JDK 17 + uses: actions/setup-java@v1 + with: + java-version: 17 + + - name: Build with Gradle + run: ./gradlew assembleDebug --stacktrace + + - name: Upload APK + uses: actions/upload-artifact@v2 + with: + name: my-build-apk + path: ./**/*.apk