android fix #6
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 and Release Android app" | |
on: | |
push: | |
branches: | |
- feat/cd-workflow | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v2 | |
with: | |
java-version: "18" # Choose appropriate JDK version | |
distribution: "adopt" | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '21' # Choose appropriate Node.js version | |
- name: Install dependencies | |
run: | | |
npm install -g corepack | |
yarn install | |
- name: Build release APK | |
run: | | |
cd android | |
./gradlew assembleRelease | |
- name: Upload release APK | |
uses: actions/upload-artifact@v2 | |
with: | |
name: app-release | |
path: ./android/app/build/outputs/apk/release/app-release.apk | |
# Optionally, create a GitHub release | |
- name: Create GitHub Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: v1.0.0 # Specify your release tag | |
release_name: Release v1.0.0 # Specify your release name | |
body: | | |
Test Release | |
draft: false | |
prerelease: false |