File tree 6 files changed +21
-13
lines changed
6 files changed +21
-13
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,6 @@ commands:
39
39
paths :
40
40
- vendor/bundle
41
41
- run : |
42
- brew install swiftlint
43
42
grep -lR "shouldUseLaunchSchemeArgsEnv" *.* --null | xargs -0 sed -i '' -e 's/shouldUseLaunchSchemeArgsEnv = "YES"/shouldUseLaunchSchemeArgsEnv = "YES" codeCoverageEnabled = "YES"/g'
44
43
- restore_cache :
45
44
keys :
Original file line number Diff line number Diff line change
1
+ {
2
+ "files": {
3
+ "SimpleKeychain/Info.plist": []
4
+ },
5
+ "postbump": "bundle update",
6
+ "prefixVersion": false
7
+ }
Original file line number Diff line number Diff line change 15
15
<key >CFBundlePackageType </key >
16
16
<string >APPL </string >
17
17
<key >CFBundleShortVersionString </key >
18
- <string >0.12.3 </string >
18
+ <string >0.1.0 </string >
19
19
<key >CFBundleSignature </key >
20
20
<string >???? </string >
21
21
<key >CFBundleVersion </key >
Original file line number Diff line number Diff line change 15
15
<key >CFBundlePackageType </key >
16
16
<string >BNDL </string >
17
17
<key >CFBundleShortVersionString </key >
18
- <string >0.12.3 </string >
18
+ <string >0.1.0 </string >
19
19
<key >CFBundleSignature </key >
20
20
<string >???? </string >
21
21
<key >CFBundleVersion </key >
Original file line number Diff line number Diff line change @@ -34,22 +34,24 @@ platform :ios do
34
34
)
35
35
end
36
36
37
+ desc "Cocoapods library lint"
38
+ lane :pod_lint do
39
+ pod_lib_lint ( verbose : false , allow_warnings : true )
40
+ end
41
+
37
42
desc "Runs all the tests in a CI environment"
38
43
lane :ci do
39
44
# TODO: Run rest of platforms
40
45
test
41
46
end
42
47
43
- desc "Cocoapods library lint "
44
- lane :pod_lint do
45
- pod_lib_lint ( allow_warnings : true )
48
+ desc "Performs the prepared release by creating a tag and pushing to remote "
49
+ lane :release_perform do
50
+ perform_release target : 'SimpleKeychain-iOS'
46
51
end
47
52
48
- desc "Releases the library to Cocoapods & Github Releases and updates README/CHANGELOG"
49
- desc "You need to specify the type of release with the `bump` parameter with the values [major|minor|patch]"
50
- lane :release do |options |
51
- release_options = { repository : 'SimpleKeychain' , xcodeproj : 'SimpleKeychain.xcodeproj' } . merge ( options )
52
- prepare_release release_options
53
- publish_release
53
+ desc "Releases the library to CocoaPods trunk & Github Releases"
54
+ lane :release_publish do
55
+ publish_release repository : 'SimpleKeychain'
54
56
end
55
57
end
Original file line number Diff line number Diff line change 15
15
<key >CFBundlePackageType </key >
16
16
<string >$(PRODUCT_BUNDLE_PACKAGE_TYPE) </string >
17
17
<key >CFBundleShortVersionString </key >
18
- <string >0.12.3 </string >
18
+ <string >0.1.0 </string >
19
19
<key >CFBundleVersion </key >
20
20
<string >1 </string >
21
21
<key >LSRequiresIPhoneOS </key >
You can’t perform that action at this time.
0 commit comments