From b338f6822ca756de36ff42da56f198d4aef282ac Mon Sep 17 00:00:00 2001 From: matttrach Date: Tue, 13 May 2025 11:50:15 -0500 Subject: [PATCH] fix: update the test name Signed-off-by: matttrach --- .github/workflows/release.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b82d5e3..f0b67db 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -200,7 +200,7 @@ jobs: run: | ./run_tests.sh -t TestDownstreamBasic - test_TestDownstreamProd: + test_TestDownstreamRoles: needs: - release - test_TestOneBasic @@ -242,7 +242,7 @@ jobs: ACME_SERVER_URL: https://acme-v02.api.letsencrypt.org/directory RANCHER_INSECURE: false run: | - ./run_tests.sh -t TestDownstreamProd + ./run_tests.sh -t TestDownstreamRoles test_Cleanup: needs: @@ -250,7 +250,7 @@ jobs: - test_TestOneBasic - test_TestProdBasic - test_TestDownstreamBasic - - test_TestDownstreamProd + - test_TestDownstreamRoles if: always() && needs.release.outputs.release_pr runs-on: ubuntu-latest steps: @@ -294,7 +294,7 @@ jobs: - test_TestOneBasic - test_TestProdBasic - test_TestDownstreamBasic - - test_TestDownstreamProd + - test_TestDownstreamRoles - test_Cleanup if: success() && needs.release.outputs.release_pr #Ensure the test jobs succeeded, and that a release PR was created. runs-on: ubuntu-latest