From 17291aaa705fd5f4f6e1dae574a5931000cc1073 Mon Sep 17 00:00:00 2001 From: Ryan Williams Date: Wed, 18 Sep 2024 13:22:19 -0700 Subject: [PATCH] use env var --- .github/actions/test-ruby/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/test-ruby/action.yml b/.github/actions/test-ruby/action.yml index d0579d16..398ab7db 100644 --- a/.github/actions/test-ruby/action.yml +++ b/.github/actions/test-ruby/action.yml @@ -52,9 +52,9 @@ runs: if: inputs.ADDITIONAL_SETUP != '[]' shell: bash env: - ADDITIONAL_COMMANDS: ${{ inputs.ADDITIONAL_COMMANDS }} + ADDITIONAL_SETUP: ${{ inputs.ADDITIONAL_SETUP }} run: | - echo "$ADDITIONAL_COMMANDS" | jq -r '.[]' | while read -r command; do + echo "$ADDITIONAL_SETUP" | jq -r '.[]' | while read -r command; do echo "Executing command: $command" $command done