From 540ade2b402cd8fd2db231eaf035e2f22b18e856 Mon Sep 17 00:00:00 2001 From: David Sungaila Date: Thu, 24 Aug 2023 18:48:52 +0200 Subject: [PATCH] Update dotnet.yml --- .github/workflows/dotnet.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index a9526f17..ac33483c 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -53,17 +53,19 @@ jobs: uses: actions/upload-artifact@main with: name: Library assemblies - path: PDFtoImage/src/PDFtoImage/bin/${{env.BUILD_CONFIGURATION}} + path: | + src/PDFtoImage/bin/${{env.BUILD_CONFIGURATION}} + !src/PDFtoImage/bin/${{env.BUILD_CONFIGURATION}}/NuGet if-no-files-found: error - name: Publish tests uses: actions/upload-artifact@main with: name: Test assemblies - path: PDFtoImage/src/Tests/bin/${{env.BUILD_CONFIGURATION}} + path: src/Tests/bin/${{env.BUILD_CONFIGURATION}} if-no-files-found: error - name: Publish NuGet packages uses: actions/upload-artifact@main with: name: NuGet packages - path: PDFtoImage/src/PDFtoImage/bin/${{env.BUILD_CONFIGURATION}}/NuGet + path: src/PDFtoImage/bin/${{env.BUILD_CONFIGURATION}}/NuGet if-no-files-found: error