File tree 4 files changed +31
-18
lines changed
4 files changed +31
-18
lines changed Original file line number Diff line number Diff line change 1316
1316
PRODUCT_BUNDLE_IDENTIFIER = codes.seanhenry.MockGeneratorApp;
1317
1317
PRODUCT_MODULE_NAME = MockGeneratorApp;
1318
1318
PRODUCT_NAME = "Swift Mock Generator for Xcode";
1319
- PROVISIONING_PROFILE_SPECIFIER = "Mock Generator Developer ID";
1319
+ PROVISIONING_PROFILE_SPECIFIER = "Mock Generator Dev ID";
1320
1320
};
1321
1321
name = Release;
1322
1322
};
1372
1372
);
1373
1373
PRODUCT_BUNDLE_IDENTIFIER = codes.seanhenry.MockGeneratorApp.XcodePlugin;
1374
1374
PRODUCT_NAME = "Mock Generator";
1375
- PROVISIONING_PROFILE_SPECIFIER = "Mock Generator Extension Developer ID";
1375
+ PROVISIONING_PROFILE_SPECIFIER = "Mock Generator Extension Dev ID";
1376
1376
SKIP_INSTALL = YES;
1377
1377
};
1378
1378
name = Release;
Original file line number Diff line number Diff line change 1
1
SWIFT_VERSION = 5.0
2
2
MARKETING_VERSION = 0.28
3
- CURRENT_PROJECT_VERSION = 3
4
- BUILD_NUMBER = 64
3
+ CURRENT_PROJECT_VERSION = 4
4
+ BUILD_NUMBER = 65
5
5
MACOSX_DEPLOYMENT_TARGET = 11.0
6
6
CLANG_ENABLE_MODULES = YES
7
7
ENABLE_STRICT_OBJC_MSGSEND = YES
Original file line number Diff line number Diff line change @@ -4,3 +4,10 @@ output_name('Swift Mock Generator for Xcode')
4
4
configuration('Release')
5
5
export_method('developer-id')
6
6
derived_data_path('/tmp/fastlaneBuild')
7
+ export_options({
8
+ method: "developer-id",
9
+ provisioningProfiles: {
10
+ "codes.seanhenry.MockGeneratorApp": "Mock Generator Dev ID",
11
+ "codes.seanhenry.MockGeneratorApp.XcodePlugin": "Mock Generator Extension Dev ID",
12
+ },
13
+ })
Original file line number Diff line number Diff line change 1
1
fastlane documentation
2
- ================
2
+ ----
3
+
3
4
# Installation
4
5
5
6
Make sure you have the latest version of the Xcode command line tools installed:
6
7
7
- ```
8
+ ``` sh
8
9
xcode-select --install
9
10
```
10
11
11
- Install _ fastlane_ using
12
- ```
13
- [sudo] gem install fastlane -NV
14
- ```
15
- or alternatively using ` brew cask install fastlane `
12
+ For _ fastlane_ installation instructions, see [ Installing _ fastlane_ ] ( https://docs.fastlane.tools/#installing-fastlane )
16
13
17
14
# Available Actions
15
+
18
16
## Mac
17
+
19
18
### mac release
19
+
20
+ ``` sh
21
+ [bundle exec] fastlane mac release
20
22
```
21
- fastlane mac release
22
- ```
23
+
23
24
Create a release build.
25
+
24
26
### mac notarize_bundle
27
+
28
+ ``` sh
29
+ [bundle exec] fastlane mac notarize_bundle
25
30
```
26
- fastlane mac notarize_bundle
27
- ```
31
+
28
32
Notarize the app bundle
29
33
30
34
----
31
35
32
- This README.md is auto-generated and will be re-generated every time [ fastlane] ( https://fastlane.tools ) is run.
33
- More information about fastlane can be found on [ fastlane.tools] ( https://fastlane.tools ) .
34
- The documentation of fastlane can be found on [ docs.fastlane.tools] ( https://docs.fastlane.tools ) .
36
+ This README.md is auto-generated and will be re-generated every time [ _ fastlane_ ] ( https://fastlane.tools ) is run.
37
+
38
+ More information about _ fastlane_ can be found on [ fastlane.tools] ( https://fastlane.tools ) .
39
+
40
+ The documentation of _ fastlane_ can be found on [ docs.fastlane.tools] ( https://docs.fastlane.tools ) .
You can’t perform that action at this time.
0 commit comments