fastlane-plugin-wp_sparkling_appcast 0.3.0 → 0.4.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 +2 -2
- data/lib/fastlane/plugin/wp_sparkling_appcast/actions/wp_sparkling_appcast_upload_action.rb +4 -4
- data/lib/fastlane/plugin/wp_sparkling_appcast/helper/wp_sparkling_appcast_helper.rb +1 -1
- data/lib/fastlane/plugin/wp_sparkling_appcast/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: edad73a1e91c154bbc52900d35352fb7b7206578d1bc2b27381377671da32383
|
4
|
+
data.tar.gz: 83d556ac84521e03eae0ae72f4fba410e506b6fddec563bd3a48109bcc3b5e31
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9fc47186fb00cb91ae5a6cbc72be9ced739e732b6ffb464449d8521b21e413b68b50e17651a171d320049806b3f70b5dc5be60735007f933bf2bb16f52f1bdcb
|
7
|
+
data.tar.gz: 2e27659a213c9b991a6f13961446f757a7e6d787cb5ae4734cd9b7018950c91e85f45da319ab4005aec4a3a458b2dea7afbffb18a55fa794c332f8a8ecea51a0
|
data/README.md
CHANGED
@@ -38,7 +38,7 @@ lane :release do
|
|
38
38
|
wp_application_pw: ENV["WP_APP_PASSWORD"],
|
39
39
|
changelog: "## Changes\n- Fixed some bugs\n- Added new features",
|
40
40
|
zip_file: "build/YourApp.zip",
|
41
|
-
|
41
|
+
channel: 123
|
42
42
|
)
|
43
43
|
end
|
44
44
|
```
|
@@ -55,7 +55,7 @@ end
|
|
55
55
|
| min_system_version | Minimum system version required | String | No | App bundle's minimum system version |
|
56
56
|
| changelog | Changelog for this version | String | No | "" |
|
57
57
|
| zip_file | Path to the zip file to upload | String | Yes | - |
|
58
|
-
|
|
58
|
+
| channel | channel ID for this build | Integer | Yes | - |
|
59
59
|
|
60
60
|
## Issues and Feedback
|
61
61
|
|
@@ -59,7 +59,7 @@ module Fastlane
|
|
59
59
|
wp_application_pw: ENV["WP_APP_PASSWORD"],
|
60
60
|
changelog: "## Changes\n- Fixed some bugs\n- Added new features",
|
61
61
|
zip_file: "path/to/YourApp.zip",
|
62
|
-
|
62
|
+
channel: 1
|
63
63
|
)'
|
64
64
|
]
|
65
65
|
end
|
@@ -135,9 +135,9 @@ module Fastlane
|
|
135
135
|
end
|
136
136
|
),
|
137
137
|
FastlaneCore::ConfigItem.new(
|
138
|
-
key: :
|
139
|
-
env_name: "
|
140
|
-
description: "
|
138
|
+
key: :channel,
|
139
|
+
env_name: "WP_SPARKLING_APPCAST_CHANNEL",
|
140
|
+
description: "Channel ID for this build",
|
141
141
|
type: Integer,
|
142
142
|
optional: false
|
143
143
|
)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-wp_sparkling_appcast
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Usiel Riedl
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-03-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubyzip
|