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