From 3d66569bec1d19ffcef8f0e07f4b86c008327eb9 Mon Sep 17 00:00:00 2001 From: Leonid Bugaev Date: Sat, 4 Apr 2026 18:46:33 +0000 Subject: [PATCH 1/2] fix: use --fail instead of --fail-with-body in curl --- .github/actions/tests/test-controller/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/tests/test-controller/action.yaml b/.github/actions/tests/test-controller/action.yaml index 1b076789..f8cc8db1 100644 --- a/.github/actions/tests/test-controller/action.yaml +++ b/.github/actions/tests/test-controller/action.yaml @@ -35,7 +35,7 @@ runs: TRIGGER: ${{ github.event_name }} run: | set -eo pipefail - curl -s --retry 5 --retry-delay 10 --fail-with-body "http://tui.internal.dev.tyk.technology/v2/$VARIATION/$REPO_NAME/$BASE_REF/$TRIGGER/$TEST_TYPE.gho" | tee -a "$GITHUB_OUTPUT" + curl -s --retry 5 --retry-delay 10 --fail "http://tui.internal.dev.tyk.technology/v2/$VARIATION/$REPO_NAME/$BASE_REF/$TRIGGER/$TEST_TYPE.gho" | tee -a "$GITHUB_OUTPUT" if ! [[ $VARIATION =~ prod ]] ;then echo "::warning file=.github/workflows/release.yml,line=24,col=1,endColumn=8::Using non-prod variation" echo "### :warning: You are using VARIATION=${VARIATION} in test-controller-{{ .test }}" >> $GITHUB_STEP_SUMMARY From 5dfc88c3438f5ba11508ed58e2bea78015f7f684 Mon Sep 17 00:00:00 2001 From: Leonid Bugaev Date: Sat, 4 Apr 2026 19:04:30 +0000 Subject: [PATCH 2/2] ci: replace tui domain with github pages url and revert fail-with-body --- .github/actions/tests/test-controller/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/tests/test-controller/action.yaml b/.github/actions/tests/test-controller/action.yaml index f8cc8db1..8306bf11 100644 --- a/.github/actions/tests/test-controller/action.yaml +++ b/.github/actions/tests/test-controller/action.yaml @@ -35,7 +35,7 @@ runs: TRIGGER: ${{ github.event_name }} run: | set -eo pipefail - curl -s --retry 5 --retry-delay 10 --fail "http://tui.internal.dev.tyk.technology/v2/$VARIATION/$REPO_NAME/$BASE_REF/$TRIGGER/$TEST_TYPE.gho" | tee -a "$GITHUB_OUTPUT" + curl -s --retry 5 --retry-delay 10 --fail-with-body "https://tyktechnologies.github.io/gromit/v2/$VARIATION/$REPO_NAME/$BASE_REF/$TRIGGER/$TEST_TYPE.gho" | tee -a "$GITHUB_OUTPUT" if ! [[ $VARIATION =~ prod ]] ;then echo "::warning file=.github/workflows/release.yml,line=24,col=1,endColumn=8::Using non-prod variation" echo "### :warning: You are using VARIATION=${VARIATION} in test-controller-{{ .test }}" >> $GITHUB_STEP_SUMMARY