Skip to content

Commit

Permalink
re-use input variables
Browse files Browse the repository at this point in the history
  • Loading branch information
jgarcesres authored Sep 14, 2023
1 parent 9eba36b commit 2f13474
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 2f13474

Please sign in to comment.