android fix #7
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" | |
distribution: "adopt" | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '21' | |
- 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 | |
- name: Create GitHub Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: v1.0.0 | |
release_name: Release v1.0.0 | |
body: | | |
Test Release | |
draft: false | |
prerelease: false | |
- name: Upload APK to GitHub Release | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./android/app/build/outputs/apk/release/app-release.apk | |
asset_name: react-native-template.apk | |
asset_content_type: application/vnd.android.package-archive |