From 9ef7ce90295b3f83af55fb82c2da896c1b3a1d29 Mon Sep 17 00:00:00 2001 From: "Marcel S. Henselin" Date: Fri, 27 Mar 2026 18:33:12 +0100 Subject: [PATCH 1/2] fix: try fix empty outputs [skip ci] --- .github/actions/acc_test/action.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/actions/acc_test/action.yaml b/.github/actions/acc_test/action.yaml index 46565e96..cb492499 100644 --- a/.github/actions/acc_test/action.yaml +++ b/.github/actions/acc_test/action.yaml @@ -221,6 +221,16 @@ runs: echo "result=no result before run" >> "$GITHUB_OUTPUT" echo "Running acceptance tests for the terraform provider" + + if [[ -z "$testfile" ]]; then + test_file="./..." + fi + + if [[ -z "$testfile" ]]; then + echo "ERROR: No test file provided" + exit 1 + fi + set +e cd stackit || exit 1 TF_ACC=1 \ From 6e3d2b51fada196822061679bf0128cf3366d627 Mon Sep 17 00:00:00 2001 From: "Marcel S. Henselin" Date: Fri, 27 Mar 2026 18:34:22 +0100 Subject: [PATCH 2/2] fix: try fix empty outputs [skip ci] --- .github/actions/acc_test/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/acc_test/action.yaml b/.github/actions/acc_test/action.yaml index cb492499..17c776de 100644 --- a/.github/actions/acc_test/action.yaml +++ b/.github/actions/acc_test/action.yaml @@ -223,7 +223,7 @@ runs: echo "Running acceptance tests for the terraform provider" if [[ -z "$testfile" ]]; then - test_file="./..." + testfile="./..." fi if [[ -z "$testfile" ]]; then