Update android.yml #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |