diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml new file mode 100644 index 0000000..146e3dd --- /dev/null +++ b/.github/workflows/android.yml @@ -0,0 +1,34 @@ +name: Build Android apk from Web code + +on: + push: + branches: [ "apk" ] + pull_request: + branches: [ "apk" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Set up Node + uses: actions/setup-node@v3 + with: + node-version: 18 + cache: 'npm' + - name: Install npm dependencies + run: npm install + - name: set up JDK 19 + uses: actions/setup-java@v3 + with: + java-version: '19' + distribution: 'temurin' + cache: gradle + - name: Create the Android project + run: npx cap add android + - name: Bump version number + run: npm run bump + - name: Build apk + run: npm run build-apk