Skip to content

Commit

Permalink
Added prod release github action (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
rob729 authored Dec 24, 2023
1 parent 876e490 commit 18d3f86
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/prod-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Prod Release

on:
workflow_dispatch:
inputs:
fastlane-input:
description: "Fastlane input"
required: false

jobs:
version-bump:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
ref: main
fetch-depth: 0

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2.2'

- name: Install Fastlane
run: gem install fastlane

- name: Run Fastlane lane for prod release
run: fastlane android production

0 comments on commit 18d3f86

Please sign in to comment.