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