From 88d4ec54b623746c1140ae7f9b014b211edc3d37 Mon Sep 17 00:00:00 2001 From: Trevor Stone Date: Sat, 3 Feb 2024 21:18:13 -0700 Subject: [PATCH] Couldn't resolve env.RUNNER_TEMP so just output test results to PWD --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0bc28b0..800d06d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -45,11 +45,11 @@ jobs: go-version-file: go.mod cache: true - name: Test - run: go test -v ./... | tee "${RUNNER_TEMP}/go-test-results.txt" + run: go test -v ./... | tee go-test-results.txt - uses: actions/upload-artifact@v4 with: name: go-test-results - path: "${{ env.RUNNER_TEMP }}/go-test-results.txt" + path: go-test-results.txt build: needs: test