Added App Release Script Github Actions #181
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 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
branches: | |
- main | |
- develop | |
paths-ignore: | |
- "**.md" | |
- doc/** | |
- .git/ | |
- .vscode/ | |
- "**.txt" | |
jobs: | |
check_lint_errors: | |
name: Trunk Check Runner | |
runs-on: ubuntu-latest | |
# trunk-ignore(checkov/CKV2_GHA_1) | |
permissions: | |
checks: write | |
contents: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Trunk Check | |
uses: trunk-io/trunk-action@v1 | |
with: | |
post-annotations: true | |
build_apk: | |
name: Build APK | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: zulu | |
java-version: 11.x | |
- name: Install dependencies | |
run: cd packages/react-native-room-kit/example/; npm install | |
- name: Make Gradlew Executable | |
run: cd packages/react-native-room-kit/example/android && chmod +x ./gradlew | |
- name: Generate App APK | |
run: | | |
cd packages/react-native-room-kit/example/android | |
./gradlew assembleDebug --no-daemon |