Skip to content

Commit

Permalink
[_]: Configure AppStore key before building
Browse files Browse the repository at this point in the history
  • Loading branch information
PixoDev committed Oct 25, 2023
1 parent 6a8c5c7 commit d1e7199
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,13 @@ platform :mac do
lane :release_ci do

setup_ci()


app_store_connect_api_key(
key_id: ENV["APP_STORE_KEY_ID"],
issuer_id: ENV["APP_STORE_ISSUER_ID"],
key_content: ENV["APP_STORE_KEY_CONTENT_BASE64"],
is_key_content_base64: true
)
# Prepare certificates using Match
match(
type: "developer_id",
Expand All @@ -41,12 +47,10 @@ platform :mac do
scheme: "InternxtDesktop",
)


# Notarize the app
notarize(
package: './build/Internxt Drive.app',
api_key_path: './app_store_key.json'
)

end
end

0 comments on commit d1e7199

Please sign in to comment.