From e4197f20c8573a86fbd2621850105f229e57b146 Mon Sep 17 00:00:00 2001 From: Giulio Bracci Date: Thu, 6 Mar 2025 08:28:14 +0100 Subject: [PATCH] docs: ehnance example of app store connect api usage with actions --- docs/app-store-connect-api.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/app-store-connect-api.md b/docs/app-store-connect-api.md index 3cf9bdcab..c31520b1c 100644 --- a/docs/app-store-connect-api.md +++ b/docs/app-store-connect-api.md @@ -65,7 +65,7 @@ lane :release do in_house: false # optional but may be required if using match/sigh ) - pilot(api_key: api_key) + pilot(api_key: api_key) # can be every action listed in the table above. end ``` @@ -84,7 +84,7 @@ lane :release do ) # Automatically loads Actions.lane_context[SharedValues::APP_STORE_CONNECT_API_KEY] - pilot + pilot # can be every action listed in the table above. end ```