File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change 21
21
run : dotnet restore libs.core.sln
22
22
- name : Build .NET Core libraries and create packages
23
23
run : dotnet pack libs.core.sln /p:noSmc=true --no-restore -c Release -o ${{ github.workspace }}/packages
24
-
24
+ - name : Upload .nupkg
25
+ uses : actions/upload-artifact@v3
26
+ with :
27
+ name : libs.core
28
+ path : ${{ github.workspace }}/packages/*.nupkg
29
+ retention-days : 1
25
30
26
31
build-framework :
27
32
runs-on : windows-latest
38
43
run : msbuild libs.framework.sln /p:Configuration=Release
39
44
- name : Create packages
40
45
run : msbuild libs.framework.sln /p:Configuration=Release -t:pack /p:PackageOutputPath=${{ github.workspace }}/packages
46
+ - name : Upload .nupkg
47
+ uses : actions/upload-artifact@v3
48
+ with :
49
+ name : libs.framework
50
+ path : ${{ github.workspace }}/packages/*.nupkg
51
+ retention-days : 1
You can’t perform that action at this time.
0 commit comments