Skip to content

Commit

Permalink
Actually build the nupkg and make it available as a secondary artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
MeFisto94 committed Nov 26, 2023
1 parent a2e2760 commit 80896c7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/netfx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:

- name: Build project
run: msbuild Andraste.Host.csproj /p:Configuration=Release

- name: Build NuGet package
run: msbuild -t:pack Andraste.Host.csproj

- name: Upload Artifact
uses: actions/upload-artifact@v3
Expand All @@ -28,4 +31,8 @@ jobs:
path: |
bin\Release\netstandard2.0\Andraste.Host.dll
bin\Release\netstandard2.0\Andraste.Host.pdb
bin\Release\Andraste.Host.*.nupkg
- name: Upload NuPkg
uses: actions/upload-artifact@v3
with:
name: NuGet
path: bin\Release\Andraste.Host.*.nupkg

0 comments on commit 80896c7

Please sign in to comment.