Update Malwarelytics for Android to 1.2.1 #15
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 Android" | |
on: | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
build-android: | |
name: Build Android App | |
runs-on: ubuntu-24.04 # ubuntu-latest uses Node.js 18.20.2 | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v4 | |
- name: Setup Java 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
cache: 'gradle' | |
- name: Prepare Wultra Repo Access | |
run: touch example/android/local.properties && echo -e "\nwultraArtifactory_username=${{ secrets.JFROG_USERNAME }}\nwultraArtifactory_password=${{ secrets.JFROG_PASSWORD }}" >> example/android/local.properties | |
- name: Install React Native CLI | |
run: yarn global add "[email protected]" | |
- name: Install Library Dependencies | |
run: yarn install --frozen-lockfile | |
- name: Install Example App Dependencies | |
run: cd example && yarn install --frozen-lockfile | |
- name: Build Android App | |
run: cd example && react-native build-android |