github action update 21 #22
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: update | |
on: push | |
jobs: | |
update: | |
name: Fastlane Update | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# - name: Set up ruby env | |
# uses: ruby/setup-ruby@v1 | |
# with: | |
# ruby-version: 3.2.2 | |
# | |
# - name: Install bundler | |
# run: | | |
# gem install bundler:2.2.27 | |
# bundle config path vendor/bundle | |
# bundle install --jobs 4 --retry 3 | |
- name: Set up ruby env | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.2.2 | |
bundler-cache: true | |
- run : sudo gem install fastlane | |
- name: Install Firebase app distribution plugin | |
run: fastlane add_plugin firebase_app_distribution | |
- name: Run tests | |
run: fastlane test | |
- name: Run slack_build | |
run: fastlane slack_build |