Bump rexml from 3.2.5 to 3.3.3 #38
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: branch | |
on: | |
push: | |
branches-ignore: [ master, develop, release ] | |
env: | |
APP_SIGN_KEYSTORE_PATH: /tmp/keystore | |
CACHE_BUNDLER: ~/.bundler | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Write key file | |
env: | |
AUTH: ${{ secrets.KEYSTORE }} | |
run: echo $AUTH | base64 --decode > /tmp/keystore | |
- name: Checkout the repository | |
uses: actions/checkout@v2 | |
- name: set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
distribution: 'zulu' | |
java-version: '11' | |
- name: Cache gradle | |
uses: actions/cache@v1 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Bundler cache | |
uses: actions/cache@v1 | |
with: | |
path: $CACHE_BUNDLER | |
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-gems- | |
- name: fastlane android test | |
uses: maierj/[email protected] | |
with: | |
lane: branch | |
options: '{ "conf": "branch" }' | |
skip-tracking: false | |
subdirectory: fastlane | |
bundle-install-path: CACHE_BUNDLER |