From 5f85fa247677b77fa45cd00034ef099722abbb34 Mon Sep 17 00:00:00 2001 From: Ricki Bin Yamin Date: Fri, 17 Nov 2023 10:04:35 +0700 Subject: [PATCH] pake env --- .github/workflows/prepare_profiles.yml | 2 +- Fastlane/Fastfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/prepare_profiles.yml b/.github/workflows/prepare_profiles.yml index f79ec92..2847e2b 100644 --- a/.github/workflows/prepare_profiles.yml +++ b/.github/workflows/prepare_profiles.yml @@ -21,6 +21,6 @@ jobs: - name: Run Match run: | - echo "Hehe $MATCH_GIT_BASIC_AUTHORIZATION" + echo "Hehe ${{ env.MATCH_GIT_BASIC_AUTHORIZATION }}" bundle exec fastlane prepare \ No newline at end of file diff --git a/Fastlane/Fastfile b/Fastlane/Fastfile index 671af5c..39d0bfa 100644 --- a/Fastlane/Fastfile +++ b/Fastlane/Fastfile @@ -19,6 +19,6 @@ platform :ios do desc "Preparing Certificate and Provisioning Profiles on New Device Setup" lane :prepare do - UI.user_error!("coba print #{ENV["MATCH_GIT_BASIC_AUTHORIZATION"]}") + UI.user_error!("coba print #{ENV["env.MATCH_GIT_BASIC_AUTHORIZATION"]}") end end