github action update 12 #12
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: Install Firebase app distribution plugin | |
run: bundle exec fastlane add_plugin firebase_app_distribution | |
# - name: Run tests | |
# run: bundle exec fastlane test | |
# - name: Run slack_build | |
# run: bundle exec fastlane slack_build |