Skip to content

Instantly share code, notes, and snippets.

@victorbruce
Created October 19, 2021 04:25
Show Gist options
  • Save victorbruce/4795ad3a34c4b5bc7ef1b69f3eaebcb2 to your computer and use it in GitHub Desktop.
Save victorbruce/4795ad3a34c4b5bc7ef1b69f3eaebcb2 to your computer and use it in GitHub Desktop.
workflow to deploy code and tag each release
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