From 0d01e5b5117fa96c06f416cf98cb9375bfdea410 Mon Sep 17 00:00:00 2001 From: Dunemask Date: Sat, 17 Feb 2024 00:32:19 -0700 Subject: [PATCH] [HOTFIX] Envar Fetch Adjust --- action.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 60c8783..2e8e229 100644 --- a/action.yml +++ b/action.yml @@ -21,8 +21,14 @@ runs: shell: bash run: | # Install Infisical Binary - curl -s -L https://github.com/Infisical/infisical/releases/download/infisical-cli%2Fv0.16.10/infisical_0.16.10_linux_amd64.tar.gz | tar xvz + echo "Installing Infisical!" + curl -s -L https://github.com/Infisical/infisical/releases/download/infisical-cli%2Fv0.16.10/infisical_0.16.10_linux_amd64.tar.gz | tar xvz - infisical + + # Install yq + echo "Installing yq" curl -s -L https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 >> yq + chmod +x yq + # Get paths and envs into list paths="${{ inputs.secret-paths }}" envs="${{ inputs.secret-envs }}"