Update Malwarelytics for Android to 1.2.1 #13
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 | |
on: | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
build-ios: | |
name: Build iOS App | |
runs-on: macos-latest | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v4 | |
- name: Prepare Wultra Repo Access | |
run: touch ~/.netrc && chmod 0600 ~/.netrc && echo -e "\nmachine wultra.jfrog.io\n login ${{ secrets.JFROG_USERNAME }}\n password ${{ secrets.JFROG_PASSWORD }}" >> ~/.netrc | |
- name: Install React Native CLI | |
run: yarn global add react-native | |
- name: Install Library Dependencies | |
run: yarn install | |
- name: Install Example App Dependencies | |
run: cd example && yarn install | |
- name: Install Pods for iOS | |
run: cd example && yarn pods | |
- name: Build iOS App | |
run: cd example && react-native build-ios |