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