Skip to content

Commit

Permalink
Upload Artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
cocoon authored Sep 24, 2024
1 parent 6b2817b commit 4f6264f
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,21 @@ jobs:
- name: Restore nuget dependencies
run: nuget restore jxlNET.sln
- name: Build
run: dotnet build --no-restore --configuration Release /p:Platform=x64 /p:AllowUnsafeBlocks=true jxl.net
- name: Test
run: dotnet test --no-build --verbosity normal
run: msbuild /p:Configuration=Release

# Upload the artifacts: https://github.com/marketplace/actions/upload-a-build-artifact
- name: Upload build artifacts jxl.net
uses: actions/upload-artifact@v3
with:
name: jxl.net
path: jxl.net\bin\x64\Release
- name: Upload build artifacts jxlViewer
uses: actions/upload-artifact@v3
with:
name: jxlViewer
path: jxlViewer\bin\x64\Release
- name: Upload build artifacts WpfExample
uses: actions/upload-artifact@v3
with:
name: WpfExample
path: WpfExample\bin\x64\Release

0 comments on commit 4f6264f

Please sign in to comment.