File tree Expand file tree Collapse file tree 2 files changed +29
-1
lines changed
Expand file tree Collapse file tree 2 files changed +29
-1
lines changed Original file line number Diff line number Diff line change 1+
2+ name : Pack
3+
4+ on :
5+ release :
6+ types : [created]
7+
8+
9+ jobs :
10+ build :
11+
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - uses : actions/checkout@v3
16+ - name : Setup .NET
17+ uses : actions/setup-dotnet@v3
18+ with :
19+ dotnet-version : 6.0.x
20+ - name : Restore dependencies
21+ run : dotnet restore
22+ - name : Pack
23+ run : dotnet pack -c Release
24+ - name : Upload packages
25+ uses : actions/upload-artifact@v2
26+ with :
27+ name : " packages"
28+ path : artifacts/pack/*.nupkg
Original file line number Diff line number Diff line change 11# This workflow will build a .NET project
22# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
33
4- name : .NET
4+ name : Build and Test
55
66on :
77 push :
You can’t perform that action at this time.
0 commit comments