fastlane-plugin-appcenter_codepush 0.1.4 → 0.1.6
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 44e36dc1c8454daf2ba86a8511767928579995edcbd2b05cf926968e0801d0f7
|
4
|
+
data.tar.gz: 3b268aae00872716003fcff52dee8adb8cedfde759a68ee67c74326d37894919
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e3e61f4eaeb477173627080ab3e61610e3601b77b8792b1b2c0ee427fc8607770489cfe433e2f831017d698c8c3bc06b0c083e2df3e0474e2c8f9a9ab10dd0b9
|
7
|
+
data.tar.gz: db259b8eb610a7c9372625e97031926afe5018bbb6436a26e02da53bf69a1a98a171f43b22e1efbe7637345f4170cc95f061eeee429700ff3e8ea436533ab183
|
data/README.md
CHANGED
@@ -10,6 +10,17 @@ This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To
|
|
10
10
|
fastlane add_plugin appcenter_codepush
|
11
11
|
```
|
12
12
|
|
13
|
+
## Example
|
14
|
+
Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running fastlane install_plugins and bundle exec fastlane test.
|
15
|
+
````ruby
|
16
|
+
appcenter_codepush(
|
17
|
+
env: 'ENVIRONMENT',
|
18
|
+
owner_name: 'OWNER_NAME'
|
19
|
+
my_app: 'MY_APP',
|
20
|
+
platform: 'PLATFORM'
|
21
|
+
)
|
22
|
+
````
|
23
|
+
|
13
24
|
## About appcenter_codepush
|
14
25
|
|
15
26
|
Plugin for codepush to appcenter
|
@@ -6,8 +6,7 @@ module Fastlane
|
|
6
6
|
class AppcenterCodepushAction < Action
|
7
7
|
def self.run(params)
|
8
8
|
UI.message("The appcenter_codepush plugin is working!")
|
9
|
-
sh "
|
10
|
-
# sh "cd .. && code-push release-react #{params[:owner_name]}/#{params[:my_app]} #{params[:platform]} -d #{params[:env]}"
|
9
|
+
sh "cd .. && code-push release-react #{params[:owner_name]}/#{params[:my_app]} #{params[:platform]} -d #{params[:env]}"
|
11
10
|
end
|
12
11
|
|
13
12
|
def self.description
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-appcenter_codepush
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ledutu
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-12-
|
11
|
+
date: 2022-12-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|