-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Praveen
authored
Sep 23, 2024
1 parent
5ac76fa
commit d5afa55
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
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
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 |