From 3974280be1b0776a6f559edd6595d3f2b687d1c5 Mon Sep 17 00:00:00 2001 From: Dunemask Date: Sun, 25 Aug 2024 11:21:28 -0600 Subject: [PATCH] [CHORE] Adjust Action Logging --- action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 15a2f07..4f4bad8 100644 --- a/action.yml +++ b/action.yml @@ -44,10 +44,12 @@ runs: # Ensure lengths match if [ "$path_len" != "$env_len" ]; then - echo "Input must match the output!" + echo "Each path must specify it's environment!" exit 1; fi + echo "Will execute ./infisical export --domain ${{ inputs.api-url }} --projectId ${{ inputs.project-id }} --token TOKEN --env ENV --path PATH" + # For each environment for i in "${!path_list[@]}"; do echo "Getting secrets from path '${path_list[i]}' from '${env_list[i]}'"