From 35792932cb06a80ec273f0fba83495a02011a567 Mon Sep 17 00:00:00 2001
From: Ryan Williams <ryan.williams@signalwire.com>
Date: Wed, 18 Sep 2024 16:11:10 -0700
Subject: [PATCH] more testing

---
 .github/actions/test-ruby/action.yml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/.github/actions/test-ruby/action.yml b/.github/actions/test-ruby/action.yml
index abef03e3..dd405bde 100644
--- a/.github/actions/test-ruby/action.yml
+++ b/.github/actions/test-ruby/action.yml
@@ -51,9 +51,10 @@ runs:
     - name: Additional Setup
       if: inputs.ADDITIONAL_SETUP != '[]'
       shell: bash
+      env:
+        ADDITIONAL_SETUP: ${{ inputs.ADDITIONAL_SETUP }}
       run: |
-        additional_setup='${{ inputs.ADDITIONAL_SETUP }}'
-        echo "$additional_setup" | jq -r '.[]' | while read -r command; do
+        echo "$ADDITIONAL_SETUP" | jq -r '.[]' | while read -r command; do
           echo "Executing additional setup command: $command"
           eval "$command"
         done