Skip to content

Commit ac9dac0

Browse files
adminadmin
authored andcommitted
devop: setup workflow
1 parent 9141351 commit ac9dac0

5 files changed

Lines changed: 30 additions & 15 deletions

File tree

macos/Enkrypt/Enkrypt.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@
457457
CODE_SIGN_ENTITLEMENTS = "Enkrypt Extension/Enkrypt_Extension.entitlements";
458458
CODE_SIGN_IDENTITY = "3rd Party Mac Developer Application: MyEtherWallet, Inc. (MDN888GSU8)";
459459
CODE_SIGN_STYLE = Manual;
460-
CURRENT_PROJECT_VERSION = 64;
460+
CURRENT_PROJECT_VERSION = 65;
461461
DEVELOPMENT_TEAM = MDN888GSU8;
462462
ENABLE_HARDENED_RUNTIME = YES;
463463
GENERATE_INFOPLIST_FILE = YES;
@@ -490,7 +490,7 @@
490490
CODE_SIGN_ENTITLEMENTS = "Enkrypt Extension/Enkrypt_Extension.entitlements";
491491
CODE_SIGN_IDENTITY = "3rd Party Mac Developer Application: MyEtherWallet, Inc. (MDN888GSU8)";
492492
CODE_SIGN_STYLE = Manual;
493-
CURRENT_PROJECT_VERSION = 64;
493+
CURRENT_PROJECT_VERSION = 65;
494494
DEVELOPMENT_TEAM = MDN888GSU8;
495495
ENABLE_HARDENED_RUNTIME = YES;
496496
GENERATE_INFOPLIST_FILE = YES;
@@ -527,7 +527,7 @@
527527
CODE_SIGN_IDENTITY = "3rd Party Mac Developer Application: MyEtherWallet, Inc. (MDN888GSU8)";
528528
CODE_SIGN_STYLE = Manual;
529529
COMBINE_HIDPI_IMAGES = YES;
530-
CURRENT_PROJECT_VERSION = 64;
530+
CURRENT_PROJECT_VERSION = 65;
531531
DEVELOPMENT_TEAM = MDN888GSU8;
532532
ENABLE_HARDENED_RUNTIME = YES;
533533
GENERATE_INFOPLIST_FILE = YES;
@@ -568,7 +568,7 @@
568568
CODE_SIGN_IDENTITY = "3rd Party Mac Developer Application: MyEtherWallet, Inc. (MDN888GSU8)";
569569
CODE_SIGN_STYLE = Manual;
570570
COMBINE_HIDPI_IMAGES = YES;
571-
CURRENT_PROJECT_VERSION = 64;
571+
CURRENT_PROJECT_VERSION = 65;
572572
DEVELOPMENT_TEAM = MDN888GSU8;
573573
ENABLE_HARDENED_RUNTIME = YES;
574574
GENERATE_INFOPLIST_FILE = YES;

macos/Enkrypt/Enkrypt/Base.lproj/Main.storyboard

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<document type="com.apple.InterfaceBuilder3.Cocoa.Storyboard.XIB" version="3.0" toolsVersion="19085" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" initialViewController="B8D-0N-5wS">
2+
<document type="com.apple.InterfaceBuilder3.Cocoa.Storyboard.XIB" version="3.0" toolsVersion="20037" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" initialViewController="B8D-0N-5wS">
33
<dependencies>
4-
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="19085"/>
5-
<plugIn identifier="com.apple.WebKit2IBPlugin" version="19085"/>
4+
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="20037"/>
5+
<plugIn identifier="com.apple.WebKit2IBPlugin" version="20037"/>
66
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
77
</dependencies>
88
<scenes>
@@ -67,7 +67,7 @@
6767
<outlet property="delegate" destination="Voe-Tx-rLC" id="PrD-fu-P6m"/>
6868
</connections>
6969
</application>
70-
<customObject id="Voe-Tx-rLC" customClass="AppDelegate" customModuleProvider="target"/>
70+
<customObject id="Voe-Tx-rLC" customClass="AppDelegate" customModule="Enkrypt" customModuleProvider="target"/>
7171
<customObject id="YLy-65-1bz" customClass="NSFontManager"/>
7272
<customObject id="Ady-hI-5gd" userLabel="First Responder" customClass="NSResponder" sceneMemberID="firstResponder"/>
7373
</objects>
@@ -97,7 +97,7 @@
9797
<!--View Controller-->
9898
<scene sceneID="hIz-AP-VOD">
9999
<objects>
100-
<viewController id="XfG-lQ-9wD" customClass="ViewController" customModuleProvider="target" sceneMemberID="viewController">
100+
<viewController id="XfG-lQ-9wD" customClass="ViewController" customModule="Enkrypt" customModuleProvider="target" sceneMemberID="viewController">
101101
<view key="view" id="m2S-Jp-Qdl">
102102
<rect key="frame" x="0.0" y="0.0" width="425" height="325"/>
103103
<autoresizingMask key="autoresizingMask"/>

macos/Enkrypt/fastlane/Fastfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ lane :prepare do
2626
type: "appstore",
2727
platform: "macos",
2828
git_branch: "safari",
29+
git_basic_authorization: Base64.strict_encode64(ENV["GIT_AUTHORIZATION"]),
30+
readonly: true,
2931
generate_apple_certs: false,
3032
additional_cert_types:"mac_installer_distribution"
3133
)
@@ -50,3 +52,9 @@ lane :release do
5052
})
5153
upload_to_app_store(skip_metadata: true, skip_screenshots: true, run_precheck_before_submit: false)
5254
end
55+
56+
desc "Prepare build and release build to the App Store"
57+
lane :buildandrelease do
58+
prepare()
59+
release()
60+
end

macos/Enkrypt/fastlane/README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
fastlane documentation
2-
----
1+
## fastlane documentation
32

43
# Installation
54

@@ -29,7 +28,15 @@ Prepare the macos app for build
2928

3029
Push a new release build to the App Store
3130

32-
----
31+
### buildandrelease
32+
33+
```sh
34+
[bundle exec] fastlane buildandrelease
35+
```
36+
37+
Prepare build and release build to the App Store
38+
39+
---
3340

3441
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
3542

macos/Enkrypt/fastlane/report.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55

66

77

8-
<testcase classname="fastlane.lanes" name="0: update_fastlane" time="2.967042">
8+
<testcase classname="fastlane.lanes" name="0: update_fastlane" time="3.168331">
99

1010
</testcase>
1111

1212

13-
<testcase classname="fastlane.lanes" name="1: produce" time="1.506269">
13+
<testcase classname="fastlane.lanes" name="1: produce" time="2.226558">
1414

1515
</testcase>
1616

1717

18-
<testcase classname="fastlane.lanes" name="2: match" time="8.113619">
18+
<testcase classname="fastlane.lanes" name="2: match" time="3.770691">
1919

2020
</testcase>
2121

0 commit comments

Comments
 (0)