From 6ae60c067571463f93f1ea4a8245530c28ed6438 Mon Sep 17 00:00:00 2001 From: Pikachu920 <28607612+Pikachu920@users.noreply.github.com> Date: Sat, 17 Aug 2024 00:31:20 -0500 Subject: [PATCH] Pass input env vars to test container --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 2ce12da..6fa3a69 100644 --- a/action.yml +++ b/action.yml @@ -64,4 +64,4 @@ runs: - name: Run tests shell: bash # Remember to change the image tag in all places! - run: "docker run -i -v /github/workspace/skript:/skript ghcr.io/skriptlang/skript-test-action:3dc25d3" + run: "docker run --env-file <(env | grep INPUT) -i -v /github/workspace/skript:/skript ghcr.io/skriptlang/skript-test-action:3dc25d3"