File tree Expand file tree Collapse file tree 1 file changed +0
-20
lines changed Expand file tree Collapse file tree 1 file changed +0
-20
lines changed Original file line number Diff line number Diff line change 31
31
with :
32
32
fetch-depth : 0
33
33
34
- - name : Setup .NET
35
- uses : actions/setup-dotnet@v4
36
- with :
37
- DOTNET_VERSION : 6.x
38
-
39
34
- name : Create Nuget Package
40
35
run : |
41
36
dotnet publish --configuration Release
53
48
runs-on : ubuntu-latest
54
49
needs : [ create_nuget ]
55
50
steps :
56
- - name : Setup .NET
57
- uses : actions/setup-dotnet@v4
58
- with :
59
- DOTNET_VERSION : 6.x
60
-
61
51
- uses : actions/download-artifact@v4
62
52
with :
63
53
name : nuget
76
66
- name : Checkout
77
67
uses : actions/checkout@v4
78
68
79
- - name : Setup .NET
80
- uses : actions/setup-dotnet@v4
81
- with :
82
- DOTNET_VERSION : 6.x
83
-
84
69
- name : Run tests
85
70
run : dotnet test --configuration Release
86
71
95
80
name : nuget
96
81
path : ${{ env.NuGetDirectory }}
97
82
98
- - name : Setup .NET Core
99
- uses : actions/setup-dotnet@v4
100
- with :
101
- DOTNET_VERSION : 6.x
102
-
103
83
- name : Publish NuGet package
104
84
run : |
105
85
foreach($file in (Get-ChildItem "${{ env.NuGetDirectory }}" -Recurse -Include *.nupkg)) {
You can’t perform that action at this time.
0 commit comments