Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Praveen authored Sep 23, 2024
1 parent 5ac76fa commit d5afa55
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Build and Release Android

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:

build:
name: Build and Release APK
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '21' # Adjust the Node.js version according to your project requirements

- name: Install dependencies
run: |
npm i @capacitor/core
npm install -g @capacitor/cli
npm install
- name: Build web assets
run: npm run build

- name: Sync web assets to Android
run: npx cap sync android

- name: set up JDK
uses: actions/setup-java@v3
with:
java-version: '22'
distribution: 'temurin'
cache: gradle

- name: Build Android APK with Gradle
run: |
cd android
chmod +x ./gradlew # Ensure Gradle wrapper has executable permission
./gradlew assembleRelease
- name: Move APK to build directory
run: |
mkdir -p $GITHUB_WORKSPACE/build
mv ./android/app/build/outputs/apk/release/app-release.apk $GITHUB_WORKSPACE/build/
- name: Create Release
id: create_release
uses: ncipollo/release-action@v1
with:
artifacts: "build/app-release.apk"
tag: v${{ github.run_number }}
token: ${{ secrets.TOKEN }}
draft: false
prerelease: false

0 comments on commit d5afa55

Please sign in to comment.