Manadate jira number as part of the branch name #489
Workflow file for this run
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" | |
permissions: | |
checks: write | |
contents: read | |
jobs: | |
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 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: zulu | |
java-version: 11.x | |
- name: Install dependencies | |
run: cd packages/react-native-hms/example/ && npm install && cd ../../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 |