Skip to content

Commit

Permalink
Bumps version and resigns app
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Henry authored and Sean Henry committed Jul 6, 2022
1 parent f498bce commit c18db3d
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 18 deletions.
4 changes: 2 additions & 2 deletions MockGenerator.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1316,7 +1316,7 @@
PRODUCT_BUNDLE_IDENTIFIER = codes.seanhenry.MockGeneratorApp;
PRODUCT_MODULE_NAME = MockGeneratorApp;
PRODUCT_NAME = "Swift Mock Generator for Xcode";
PROVISIONING_PROFILE_SPECIFIER = "Mock Generator Developer ID";
PROVISIONING_PROFILE_SPECIFIER = "Mock Generator Dev ID";
};
name = Release;
};
Expand Down Expand Up @@ -1372,7 +1372,7 @@
);
PRODUCT_BUNDLE_IDENTIFIER = codes.seanhenry.MockGeneratorApp.XcodePlugin;
PRODUCT_NAME = "Mock Generator";
PROVISIONING_PROFILE_SPECIFIER = "Mock Generator Extension Developer ID";
PROVISIONING_PROFILE_SPECIFIER = "Mock Generator Extension Dev ID";
SKIP_INSTALL = YES;
};
name = Release;
Expand Down
4 changes: 2 additions & 2 deletions config/Shared.xcconfig
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
SWIFT_VERSION = 5.0
MARKETING_VERSION = 0.28
CURRENT_PROJECT_VERSION = 3
BUILD_NUMBER = 64
CURRENT_PROJECT_VERSION = 4
BUILD_NUMBER = 65
MACOSX_DEPLOYMENT_TARGET = 11.0
CLANG_ENABLE_MODULES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
Expand Down
7 changes: 7 additions & 0 deletions fastlane/Gymfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,10 @@ output_name('Swift Mock Generator for Xcode')
configuration('Release')
export_method('developer-id')
derived_data_path('/tmp/fastlaneBuild')
export_options({
method: "developer-id",
provisioningProfiles: {
"codes.seanhenry.MockGeneratorApp": "Mock Generator Dev ID",
"codes.seanhenry.MockGeneratorApp.XcodePlugin": "Mock Generator Extension Dev ID",
},
})
34 changes: 20 additions & 14 deletions fastlane/README.md
Original file line number Diff line number Diff line change
@@ -1,34 +1,40 @@
fastlane documentation
================
----

# Installation

Make sure you have the latest version of the Xcode command line tools installed:

```
```sh
xcode-select --install
```

Install _fastlane_ using
```
[sudo] gem install fastlane -NV
```
or alternatively using `brew cask install fastlane`
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)

# Available Actions

## Mac

### mac release

```sh
[bundle exec] fastlane mac release
```
fastlane mac release
```

Create a release build.

### mac notarize_bundle

```sh
[bundle exec] fastlane mac notarize_bundle
```
fastlane mac notarize_bundle
```

Notarize the app bundle

----

This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run.
More information about fastlane can be found on [fastlane.tools](https://fastlane.tools).
The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools).
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.

More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools).

The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools).

0 comments on commit c18db3d

Please sign in to comment.