Add release notes parameter to Firebase Release
This commit is contained in:
parent
0b46efff1f
commit
1807809c37
5 changed files with 18 additions and 14 deletions
|
|
@ -54,7 +54,7 @@ platform :ios do
|
|||
desc "```"
|
||||
lane :deployInternalToFirebase do |options|
|
||||
release_notes = options[:release_notes]
|
||||
if release_notes.nil?
|
||||
if release_notes.nil? || release_notes.empty?
|
||||
commit = last_git_commit
|
||||
release_notes = "Last commit with hash: #{commit[:commit_hash]} and message: #{commit[:message]}"
|
||||
end
|
||||
|
|
|
|||
|
|
@ -15,10 +15,10 @@ For _fastlane_ installation instructions, see [Installing _fastlane_](https://do
|
|||
|
||||
## iOS
|
||||
|
||||
### ios deployInternalFirebase
|
||||
### ios deployInternalToFirebase
|
||||
|
||||
```sh
|
||||
[bundle exec] fastlane ios deployInternalFirebase
|
||||
[bundle exec] fastlane ios deployInternalToFirebase
|
||||
```
|
||||
|
||||
Creates Release Signed build and publishes it to firebase
|
||||
|
|
@ -27,7 +27,7 @@ Creates Release Signed build and publishes it to firebase
|
|||
|
||||
```sh
|
||||
|
||||
[bundle exec] fastlane deployInternalFirebase release_notes:"testing notes"
|
||||
[bundle exec] fastlane deployInternalToFirebase release_notes:"testing notes"
|
||||
|
||||
```
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue