Skip to content

Commit

Permalink
Update dotnet.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sungaila authored Aug 24, 2023
1 parent 0068c7a commit 540ade2
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 540ade2

Please sign in to comment.