diff --git a/.github/workflows/debug_build.yml b/.github/workflows/debug_build.yml index 0aa761a713..888d3d1a9b 100644 --- a/.github/workflows/debug_build.yml +++ b/.github/workflows/debug_build.yml @@ -11,7 +11,7 @@ on: - android-10 jobs: - build: + build-ubuntu: runs-on: ubuntu-latest steps: - name: Clone repository @@ -24,3 +24,17 @@ jobs: with: name: termux-app path: ./app/build/outputs/apk/debug/app-debug.apk + build-windows: + runs-on: windows-latest + steps: + - name: Clone repository + uses: actions/checkout@v2 + - name: Build + run: | + dir + .\gradlew.bat assembleDebug + - name: Store generated APK file + uses: actions/upload-artifact@v1 + with: + name: termux-app + path: ./app/build/outputs/apk/debug/app-debug.apk