contrib-readme-action has updated readme #206
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: develop | |
on: | |
push: | |
branches: [ main ] | |
env: | |
APP_SIGN_KEYSTORE_PATH: /tmp/keystore | |
CACHE_BUNDLER: ~/.bundler | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Write key file | |
env: | |
AUTH: ${{ secrets.KEYSTORE }} | |
run: echo $AUTH | base64 --decode > /tmp/keystore | |
- name: Checkout the Repository | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- 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: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '2.6' | |
- name: Install Dependencies | |
run: gem install bundler && bundle install | |
- name: Run Release Build | |
uses: maierj/[email protected] | |
with: | |
lane: main | |
options: '{ "conf": "release" }' | |
skip-tracking: false | |
subdirectory: fastlane | |
bundle-install-path: CACHE_BUNDLER |