diff --git a/action.yml b/action.yml index 31b2fbd..bcea22d 100644 --- a/action.yml +++ b/action.yml @@ -5,7 +5,7 @@ inputs: infisical-token: description: 'Infisical API Token' required: true - envs: + secret-envs: description: 'The environments to fetch secrets for (Example: ci or ci,prod,edge )' required: true secret-paths: @@ -26,7 +26,7 @@ runs: # Get paths and envs into list paths="${{ inputs.secret-paths }}" - envs="${{ inputs.envs }}" + envs="${{ inputs.secret-envs }}" path_list=( $(echo $paths | sed "s/,/ /g") ) env_list=( $(echo $envs | sed "s/,/ /g") )