fastlane-plugin-figure_release 0.6.0 → 0.7.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 +4 -4
- data/README.md +23 -0
- data/lib/fastlane/plugin/figure_release/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e2acd1753dd5ea8892215a7ce2208fda9572d0ab3a8b7feefdd9389c06bf793f
|
|
4
|
+
data.tar.gz: 196d97cae440e05f64bf0a53c91036e882cae00b746bf728014b42b464682de8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3be14dd65641dee1c69e520fe6e672a5cd90f33df91fc94b787168a2dfe04bcad838225b33b4ada6c458dad9ae26543423647e7034aa8e05f8605ead167b6eca
|
|
7
|
+
data.tar.gz: 3736d632713186bec46d190ab38b5b628aaab49a57f35fe51ac464e63ee7ea4b35b92cdb3c7ed52f8d54553c1cc0055d51a26539cfe109766dc3e6bfc1e9c9a7
|
data/README.md
CHANGED
|
@@ -10,6 +10,29 @@ This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To
|
|
|
10
10
|
fastlane add_plugin figure_release
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
+
## How to Release
|
|
14
|
+
|
|
15
|
+
### Setup credentials
|
|
16
|
+
```
|
|
17
|
+
curl -u {your_gem_account_name} https://rubygems.org/api/v1/api_key.yaml > ~/.gem/credentials
|
|
18
|
+
Enter host password for user '{your_gem_account_name}': {your_password}
|
|
19
|
+
```
|
|
20
|
+
Then:
|
|
21
|
+
```
|
|
22
|
+
chmod 0600 ~/.gem/credentials
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### Increase Version
|
|
26
|
+
|
|
27
|
+
Increase version in `./lib/fastlane/plugin/figure_release/VERSION` and commit changes.
|
|
28
|
+
|
|
29
|
+
### Build and Release
|
|
30
|
+
```bash
|
|
31
|
+
bundle install
|
|
32
|
+
rake install
|
|
33
|
+
rake release
|
|
34
|
+
```
|
|
35
|
+
|
|
13
36
|
## About figure_release
|
|
14
37
|
|
|
15
38
|
Fastlane plugin for publishing React Native applications.
|