From a34963df7837f18a885fb28aa7adb071becba3b1 Mon Sep 17 00:00:00 2001 From: Lars Mikal Rogne Date: Mon, 2 Dec 2024 11:45:24 +0100 Subject: [PATCH] Test artifact --- .github/workflows/solve.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/solve.yaml b/.github/workflows/solve.yaml index 9981151..ae63fd0 100644 --- a/.github/workflows/solve.yaml +++ b/.github/workflows/solve.yaml @@ -21,4 +21,9 @@ jobs: for script in $(ls *.kts | sort -r); do echo "Running $script" kotlin $script - done \ No newline at end of file + done | tee solutions-output.txt + - name: Upload Solutions Output + uses: actions/upload-artifact@v3 + with: + name: solutions-output + path: solutions-output.txt