Skip to content

Commit

Permalink
Update dotnet.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sungaila authored Jan 18, 2024
1 parent 2e1ca32 commit a4ab80d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
- name: Pack
run: msbuild src/PDFtoImage/PDFtoImage.csproj /t:pack /p:Configuration=${{ github.event_name != 'workflow_dispatch' && 'Debug' || inputs.build_configuration }} /p:VersionSuffix=ci /p:RestorePackages=false
- name: Publish libraries
uses: actions/upload-artifact@main
uses: actions/upload-artifact@v3
with:
name: Library assemblies
path: |
Expand All @@ -112,7 +112,7 @@ jobs:
!**/*.snupkg
if-no-files-found: error
- name: Publish NuGet packages
uses: actions/upload-artifact@main
uses: actions/upload-artifact@v3
with:
name: NuGet packages
path: |
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
run: dotnet test net8.0/*.Tests.dll --logger trx --verbosity detailed ${{ (github.event_name == 'workflow_dispatch' && inputs.generate_assets) == true && '--settings net8.0/SaveOutputInGeneratedFolder.runsettings' || '' }}
- name: Upload test results
if: success() || failure()
uses: actions/upload-artifact@main
uses: actions/upload-artifact@v3
with:
name: Test results (${{ matrix.os }})
path: ./**/*.trx
Expand Down

0 comments on commit a4ab80d

Please sign in to comment.