add publish and upload artifact

This commit is contained in:
Nick Seguin 2023-12-10 02:19:10 -06:00
parent 3a0b153a15
commit 2a5c680a17

View file

@ -45,7 +45,7 @@ jobs:
- name: dotnet tool restore
run: dotnet tool restore
- name: dotnet restore
run: dotnet restore
run: dotnet restore -p:Configuration=Release
- name: save nuget cache
uses: actions/cache/save@v3
if: steps.nuget-cache.outputs.cache-hit != 'true'
@ -55,4 +55,11 @@ jobs:
- name: dotnet build
run: dotnet build --no-restore --configuration Release
- name: dotnet test
run: dotnet test
run: dotnet test
- name: dotnet publish
run: dotnet publish --no-build --configuration Release --output ./dist
- name: upload artifact
uses: actions/upload-artifact@v2
with:
name: dist
path: ./dist