From 71c929cda806840ea6551efb8e2b66c33ca7afe5 Mon Sep 17 00:00:00 2001 From: Philipp Horstenkamp Date: Wed, 27 Dec 2023 11:59:02 +0100 Subject: [PATCH] Renamed some artifacts (#489) Renamed some artifacts and other minor tweaks to the test & build workfow --- .github/workflows/test-and-build-action.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-and-build-action.yaml b/.github/workflows/test-and-build-action.yaml index cd248a8..c9c5811 100644 --- a/.github/workflows/test-and-build-action.yaml +++ b/.github/workflows/test-and-build-action.yaml @@ -35,6 +35,7 @@ jobs: path: | coverage.xml .coverage + if-no-files-found: error - name: Archive unit test results uses: actions/upload-artifact@v4 with: @@ -88,6 +89,7 @@ jobs: with: name: Coverage Report HTML path: htmlcov/ + if-no-files-found: error build: name: Wheel-Build @@ -109,8 +111,9 @@ jobs: - name: Archive builds uses: actions/upload-artifact@v4 with: - name: wheel-builds + name: python-build-artifacts path: dist/ + if-no-files-found: error docker-build: name: Docker Build @@ -123,7 +126,7 @@ jobs: - uses: actions/download-artifact@v4 with: - name: wheel-builds + name: python-build-artifacts path: dist - id: tag_or_main