diff --git a/.gitea/workflows/run_tests.yml b/.gitea/workflows/run_tests.yml index d469cbd..47803e0 100644 --- a/.gitea/workflows/run_tests.yml +++ b/.gitea/workflows/run_tests.yml @@ -29,8 +29,9 @@ jobs: - name: Run tests run: uv run pytest tests --junit-xml=pytest-results.xml - - name: Publish Test Results + - name: Upload test results if: always() - uses: actions/upload-test-results@v2 + uses: gitea.com/actions/upload-artifact@v1 with: - files: pytest-results.xml \ No newline at end of file + name: pytest-results + path: pytest-results.xml \ No newline at end of file