From 548ea3bd19c1bdf83c0dac9f0740a3abd1efc112 Mon Sep 17 00:00:00 2001 From: Logiar Date: Mon, 2 Dec 2024 14:06:27 +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: