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 28a9980 commit 7b25fa0
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 @@ -40,11 +40,11 @@ jobs:
java-package: jdk
distribution: 'zulu'
- name: Restore
run: dotnet restore
run: dotnet restore src/PDFtoImage.sln
- name: Build
run: dotnet msbuild --no-restore --configuration ${{env.BUILD_CONFIGURATION}} /p:VersionSuffix=ci
run: dotnet msbuild src/PDFtoImage.sln --no-restore --configuration ${{env.BUILD_CONFIGURATION}} /p:VersionSuffix=ci
- name: Package
run: dotnet pack --no-restore --no-build --configuration ${{env.BUILD_CONFIGURATION}} --output NuGet /p:VersionSuffix=ci
run: dotnet pack src/PDFtoImage.sln --no-restore --no-build --configuration ${{env.BUILD_CONFIGURATION}} --output NuGet /p:VersionSuffix=ci
- name: Publish libraries
uses: actions/upload-artifact@main
with:
Expand Down

0 comments on commit 7b25fa0

Please sign in to comment.