fastlane-plugin-trigger_bitrise_build 0.1.2 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a1728541673f12aa7413938741aff4e810049bb1
|
|
4
|
+
data.tar.gz: 4ef96bad9698aedf87fe1ea6e6178664176e341b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 298b1e5977336c8c77f28b28845e6146ba0d563134921c8027c6817910958728f12aa69359a3958fc16ccbd210231d69b8a730a4130a8b002abce44cf8957365
|
|
7
|
+
data.tar.gz: e215e9510f37348bff6a15bc3b60d5b7369be4417e19fbdd36ca67d599305337153b0597d91a8edd54b992f8e17baa50a02e6658cfdc079aafa58ede49d67526
|
data/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://rubygems.org/gems/fastlane-plugin-trigger_bitrise_build)
|
|
4
4
|
|
|
5
|
+
[](https://badge.fury.io/rb/fastlane-plugin-trigger_bitrise_build)
|
|
6
|
+
|
|
5
7
|
## Getting Started
|
|
6
8
|
|
|
7
9
|
This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-trigger_bitrise_build`, add it to your project by running:
|
|
@@ -8,7 +8,8 @@ module Fastlane
|
|
|
8
8
|
api_token = params[:api_token] ||= ENV['BITRISE_API_TOKEN']
|
|
9
9
|
app_title = params[:app_title] ||= ENV['BITRISE_APP_TITLE']
|
|
10
10
|
git_branch = params[:git_branch] ||= ENV['BITRISE_GIT_BRANCH']
|
|
11
|
-
|
|
11
|
+
# get the commit from either the params, the specific env var or implicitly when the branch/tag is cloned
|
|
12
|
+
git_commit = params[:git_commit] ||= ENV['BITRISE_GIT_COMMIT']||=ENV['GIT_CLONE_COMMIT_HASH']
|
|
12
13
|
git_tag = params[:git_tag] ||= ENV['BITRISE_GIT_TAG']
|
|
13
14
|
workflow_id = params[:workflow_id] ||= ENV['BITRISE_TRIGGERED_WORKFLOW_ID']
|
|
14
15
|
commit_message = params[:commit_message] ||= ENV['BITRISE_GIT_MESSAGE']
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-trigger_bitrise_build
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nick Hammond
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-11-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|