From dbbc9e52a9b1cf35e390882a3f5dd37e755f3f64 Mon Sep 17 00:00:00 2001 From: Jeffrey Cafferata Date: Thu, 15 Feb 2024 16:52:09 +0100 Subject: [PATCH] CICD: Provide the correct GitHub action contexts (#2842) --- .github/workflows/pr_test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr_test.yml b/.github/workflows/pr_test.yml index a2d2f3bd9..22422ff0d 100644 --- a/.github/workflows/pr_test.yml +++ b/.github/workflows/pr_test.yml @@ -43,7 +43,7 @@ jobs: - uses: actions/upload-artifact@v4.3.1 with: name: unit-tests - path: $TEST_RESULTS + path: ${{ env.TEST_RESULTS }} # Stringer is needed because .goreleaser includes "go generate ./..." - name: Install stringer @@ -204,4 +204,4 @@ jobs: - uses: actions/upload-artifact@v4.3.1 with: name: integration-tests-${{ matrix.provider }} - path: $TEST_RESULTS + path: ${{ env.TEST_RESULTS }}