Skip to content

Commit

Permalink
fix: fastlane
Browse files Browse the repository at this point in the history
  • Loading branch information
admin authored and admin committed Aug 18, 2022
1 parent 36af976 commit ee4c32a
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 9 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/macos-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,6 @@ jobs:
MATCH_GIT_URL: "${{ secrets.OSX_MATCH_GIT_URL }}"
MATCH_PASSWORD: "${{ secrets.OSX_MATCH_PASSWORD }}"
GIT_AUTHORIZATION: "${{ secrets.OSX_GIT_AUTHORIZATION }}"
API_KEY: "${{ secrets.OSX_API_KEY }}"
API_KEY_ID: "${{ secrets.OSX_API_KEY_ID }}"
API_ISSUER_ID: "${{ secrets.OSX_API_ISSUER_ID }}"
8 changes: 4 additions & 4 deletions macos/Enkrypt/Enkrypt.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@
CODE_SIGN_ENTITLEMENTS = "Enkrypt Extension/Enkrypt_Extension.entitlements";
CODE_SIGN_IDENTITY = "3rd Party Mac Developer Application: MyEtherWallet, Inc. (MDN888GSU8)";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 65;
CURRENT_PROJECT_VERSION = 67;
DEVELOPMENT_TEAM = MDN888GSU8;
ENABLE_HARDENED_RUNTIME = YES;
GENERATE_INFOPLIST_FILE = YES;
Expand Down Expand Up @@ -490,7 +490,7 @@
CODE_SIGN_ENTITLEMENTS = "Enkrypt Extension/Enkrypt_Extension.entitlements";
CODE_SIGN_IDENTITY = "3rd Party Mac Developer Application: MyEtherWallet, Inc. (MDN888GSU8)";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 65;
CURRENT_PROJECT_VERSION = 67;
DEVELOPMENT_TEAM = MDN888GSU8;
ENABLE_HARDENED_RUNTIME = YES;
GENERATE_INFOPLIST_FILE = YES;
Expand Down Expand Up @@ -527,7 +527,7 @@
CODE_SIGN_IDENTITY = "3rd Party Mac Developer Application: MyEtherWallet, Inc. (MDN888GSU8)";
CODE_SIGN_STYLE = Manual;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 65;
CURRENT_PROJECT_VERSION = 67;
DEVELOPMENT_TEAM = MDN888GSU8;
ENABLE_HARDENED_RUNTIME = YES;
GENERATE_INFOPLIST_FILE = YES;
Expand Down Expand Up @@ -568,7 +568,7 @@
CODE_SIGN_IDENTITY = "3rd Party Mac Developer Application: MyEtherWallet, Inc. (MDN888GSU8)";
CODE_SIGN_STYLE = Manual;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 65;
CURRENT_PROJECT_VERSION = 67;
DEVELOPMENT_TEAM = MDN888GSU8;
ENABLE_HARDENED_RUNTIME = YES;
GENERATE_INFOPLIST_FILE = YES;
Expand Down
7 changes: 7 additions & 0 deletions macos/Enkrypt/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@ end

desc "Prepare build and release build to the App Store"
lane :buildandrelease do
app_store_connect_api_key(
key_id: ENV["API_KEY_ID"] ,
issuer_id: ENV["API_ISSUER_ID"],
key_content: ENV["API_KEY"],
duration: 1200, # optional (maximum 1200)
in_house: false # optional but may be required if using match/sigh
)
prepare()
release()
end
5 changes: 3 additions & 2 deletions macos/Enkrypt/fastlane/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
## fastlane documentation
fastlane documentation
----

# Installation

Expand Down Expand Up @@ -36,7 +37,7 @@ Push a new release build to the App Store

Prepare build and release build to the App Store

---
----

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

Expand Down
26 changes: 23 additions & 3 deletions macos/Enkrypt/fastlane/report.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,37 @@



<testcase classname="fastlane.lanes" name="0: update_fastlane" time="3.168331">
<testcase classname="fastlane.lanes" name="0: update_fastlane" time="3.097139">

</testcase>


<testcase classname="fastlane.lanes" name="1: produce" time="2.226558">
<testcase classname="fastlane.lanes" name="1: app_store_connect_api_key" time="0.003664">

</testcase>


<testcase classname="fastlane.lanes" name="2: match" time="3.770691">
<testcase classname="fastlane.lanes" name="2: Switch to prepare lane" time="0.000633">

</testcase>


<testcase classname="fastlane.lanes" name="3: produce" time="1.488559">

</testcase>


<testcase classname="fastlane.lanes" name="4: match" time="3.806136">

</testcase>


<testcase classname="fastlane.lanes" name="5: Switch to release lane" time="0.000334">

</testcase>


<testcase classname="fastlane.lanes" name="6: increment_build_number" time="1.041916">

</testcase>

Expand Down

1 comment on commit ee4c32a

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.