Skip to content

Commit

Permalink
Merge pull request #88 from johndbritton/gatekeeper
Browse files Browse the repository at this point in the history
Enable symlinks for archive during automated release
  • Loading branch information
johndbritton committed Jan 5, 2021
2 parents d16c9c9 + 2bec483 commit 3cd846c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ lane :draft_github_release do
notarize_build
zip(
path: './build/teleport.app',
output_path: "./build/teleport-#{tag}.zip"
output_path: "./build/teleport-#{tag}.zip",
symlinks: true
)
sparkle_signature = File.open(File.expand_path("../build/teleport-#{tag}.zip"), "rb") do |file|
Base64.encode64(sparkle_signing_key.sign(file.read)).chomp
Expand Down
6 changes: 3 additions & 3 deletions teleport.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1139,7 +1139,7 @@
CODE_SIGN_STYLE = Manual;
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = YES;
CURRENT_PROJECT_VERSION = 1.3.2;
CURRENT_PROJECT_VERSION = 1.3.3;
DEVELOPMENT_TEAM = "";
ENABLE_HARDENED_RUNTIME = YES;
EXCLUDED_ARCHS = "";
Expand Down Expand Up @@ -1167,7 +1167,7 @@
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Manual;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 1.3.2;
CURRENT_PROJECT_VERSION = 1.3.3;
DEVELOPMENT_TEAM = "";
ENABLE_HARDENED_RUNTIME = YES;
EXCLUDED_ARCHS = "";
Expand Down Expand Up @@ -1280,7 +1280,7 @@
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Manual;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 1.3.2;
CURRENT_PROJECT_VERSION = 1.3.3;
DEVELOPMENT_TEAM = "";
ENABLE_HARDENED_RUNTIME = YES;
EXCLUDED_ARCHS = "";
Expand Down

0 comments on commit 3cd846c

Please sign in to comment.