add publish and upload artifact
This commit is contained in:
parent
3a0b153a15
commit
2a5c680a17
1 changed files with 9 additions and 2 deletions
|
@ -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
|
Loading…
Reference in a new issue