File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -43,14 +43,11 @@ jobs:
43
43
- name : Restore dependencies
44
44
run : dotnet restore
45
45
46
- - name : Build Test version
47
- run : dotnet build --configuration Release --no-restore
48
-
49
- - name : Run Tests
50
- run : dotnet test --configuration Release --no-restore --verbosity normal --collect:"XPlat Code Coverage" --settings Marten.AspNetCore.Identity.Tests/coverlet.runsettings
51
-
52
46
- name : Build Release version
53
47
run : dotnet build --no-restore --configuration Release /p:AssemblyVersion=${{ steps.gitversion.outputs.assemblySemFileVer }} /p:FileVersion=${{ steps.gitversion.outputs.assemblySemFileVer }} /p:InformationalVersion=${{ steps.gitversion.outputs.Sha }}
48
+
49
+ # - name: Run Tests
50
+ # run: dotnet test --configuration Release --no-restore --verbosity normal --collect:"XPlat Code Coverage" --settings Marten.AspNetCore.Identity.Tests/coverlet.runsettings
54
51
55
52
- name : Pack
56
53
run : dotnet pack --no-build --output ./output --configuration Release /p:PackageVersion=${{ steps.gitversion.outputs.nuGetVersionV2 }}
59
56
uses : actions/upload-artifact@v2
60
57
with :
61
58
name : " Marten.AspNetCore.Identity-${{ steps.gitversion.outputs.nuGetVersionV2 }}"
62
- path : ./output/*.nupkg
59
+ path : ./output/*.*
63
60
64
61
- name : Upload Package to release
65
62
# if: contains(github.ref, 'main')
You can’t perform that action at this time.
0 commit comments