From 2f134740a5f0d1f8843d6be05a2c2edcfaffd25d Mon Sep 17 00:00:00 2001 From: jgarcesres Date: Thu, 14 Sep 2023 13:07:54 -0400 Subject: [PATCH] re-use input variables --- action.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.py b/action.py index 8f3ef95..21c78a5 100644 --- a/action.py +++ b/action.py @@ -324,8 +324,8 @@ def push_ea_scripts(): username = os.getenv('INPUT_JAMF_USERNAME') password = os.getenv('INPUT_JAMF_PASSWORD') else: - client_id = os.getenv("INPUT_JAMF_CLIENT_ID") - client_secret = os.getenv("INPUT_JAMF_CLIENT_SECRET") + client_id = os.getenv("INPUT_JAMF_USERNAME") + client_secret = os.getenv("INPUT_JAMF_PASSWORD") script_dir = os.getenv('INPUT_SCRIPT_DIR') ea_script_dir = os.getenv('INPUT_EA_SCRIPT_DIR') workspace_dir = os.getenv('GITHUB_WORKSPACE')