Created
October 19, 2021 04:25
-
-
Save victorbruce/4795ad3a34c4b5bc7ef1b69f3eaebcb2 to your computer and use it in GitHub Desktop.
workflow to deploy code and tag each release
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
jobs: | |
build-production: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout Repository in Github VM | |
uses: actions/checkout@v2 | |
- name: Run Node in Github VM | |
uses: actions/setup-node@master | |
- name: Install Dependencies | |
run: | | |
npm install | |
- name: Install Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.6 | |
- name: Install Fastlane | |
run: | | |
bundle install | |
bundle update fastlane | |
- name: Build and Publish Mobile App | |
run: | | |
bundle exec fastlane android distribute |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment