Skip to content

Commit

Permalink
Merge pull request #2 from letwebdev/apk
Browse files Browse the repository at this point in the history
Create android.yml
  • Loading branch information
letwebdev authored Oct 9, 2023
2 parents ef309ad + bc4ce9c commit 4b220df
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 4b220df

Please sign in to comment.