From a9e669648b3744b0d11a0bbd601cb296a5b939a7 Mon Sep 17 00:00:00 2001 From: Lars Mikal Rogne Date: Mon, 2 Dec 2024 11:48:39 +0100 Subject: [PATCH] Try again. --- .github/workflows/solve.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/solve.yaml b/.github/workflows/solve.yaml index a9690bd..2ea3416 100644 --- a/.github/workflows/solve.yaml +++ b/.github/workflows/solve.yaml @@ -19,9 +19,9 @@ jobs: run: | set -e for script in $(ls *.kts | sort -r); do - echo "Running $script" - kotlin $script - done | tee solutions-output.txt + echo "Running $script" | tee -a solutions-output.txt + kotlin $script 2>&1 | tee -a solutions-output.txt + done - name: Upload Solutions Output uses: actions/upload-artifact@v4 with: