From ad38c717cb64b687088d6b1cf681ddbb9c5b4ed0 Mon Sep 17 00:00:00 2001 From: Marc Boehm Date: Mon, 25 Mar 2024 16:04:12 +0100 Subject: [PATCH] CAPAUT-353 Expose test articats --- .gitea/workflows/build-java.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build-java.yaml b/.gitea/workflows/build-java.yaml index 9bbfdbd..40e8987 100644 --- a/.gitea/workflows/build-java.yaml +++ b/.gitea/workflows/build-java.yaml @@ -26,11 +26,19 @@ jobs: - name: Run gradle build process run: | ./gradlew build - - name: Upload artifact + - name: Upload build artifacts uses: actions/upload-artifact@v3 with: name: artifacts-build path: | build/libs/ build/*.sh + retention-days: 10 + - name: Upload test artifacts + uses: actions/upload-artifact@v3 + with: + name: artifacts-test + path: | + build/test-results + build/reports retention-days: 10 \ No newline at end of file