From 55cdcd86b62bec748f97ba0c503201d1b7156931 Mon Sep 17 00:00:00 2001 From: Jens True Date: Thu, 16 Nov 2023 13:13:57 +0000 Subject: [PATCH] File names for output --- .gitea/workflows/build.yaml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 5a55ea5..7d72621 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -27,14 +27,18 @@ jobs: run: composer analyze - name: Test run: composer test-full - - uses: actions/upload-artifact@v3 - with: + - name: Upload Test report + uses: actions/upload-artifact@v3 + with: path: output/test.html + name: test.html - uses: actions/upload-artifact@v3 with: - path: coverage + path: output/coverage + name: test-coverage.zip - name: Document run: phpdoc run - uses: actions/upload-artifact@v3 with: - path: output/docs \ No newline at end of file + path: output/docs + name: documentation.zip \ No newline at end of file