From 7c04a5b2e7a9e7bd4343371d67b1189e55b3dad3 Mon Sep 17 00:00:00 2001 From: Brandon Shipley Date: Fri, 23 Jan 2026 01:45:23 -0800 Subject: [PATCH] phpcs and phpstan dont put in artifacts directory --- .gitea/workflows/ci.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index d43ffed..984ca21 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -132,15 +132,14 @@ jobs: - name: Run phpcs run: composer cs-check > phpcs.errors - - run: mkdir -p artifacts - uses: https://github.com/christopherHX/gitea-upload-artifact@v4 with: name: phpstan - path: artifacts/phpstan.errors + path: phpstan.errors - uses: https://github.com/christopherHX/gitea-upload-artifact@v4 with: name: phpcs - path: artifacts/phpcs.errors + path: phpcs.errors