File tree 1 file changed +7
-16
lines changed
1 file changed +7
-16
lines changed Original file line number Diff line number Diff line change @@ -51,27 +51,18 @@ jobs:
51
51
- name : Test with dotnet
52
52
run : dotnet test
53
53
--no-build --configuration ${{ env.BuildConfig }}
54
- --logger "trx;LogFileName=test-results.trx" --results-directory ./artifacts/testResults
54
+ --logger "trx;LogFileName=test-results.trx" --results-directory ./artifacts/test-results
55
55
continue-on-error : true
56
56
57
- # - name: Test Report
58
- # uses: dorny/test-reporter@v1
59
- # if: always()
60
- # with:
61
- # name: DotNET Tests
62
- # path: "./artifacts/testResults/test-results.trx"
63
- # reporter: dotnet-trx
64
- # fail-on-error: true
65
-
66
57
- name : Pack NuGet
67
58
run : dotnet pack
68
59
--configuration ${{ env.BuildConfig }}
60
+ --output ./artifacts/nuget
69
61
/p:ContinuousIntegrationBuild=true
70
62
/p:Version=${{ steps.nbgv.outputs.NuGetPackageVersion }}
71
63
72
- - name : Push to NuGet
73
- run : dotnet nuget push **/*.nupkg
74
- --api-key ${{ secrets.NUGET_DEPLOY_KEY }}
75
- --source https://api.nuget.org/v3/index.json
76
- --no-symbols
77
- --skip-duplicate
64
+ - name : Upload Artifacts
65
+ uses : actions/upload-artifact@v4
66
+ with :
67
+ name : artifacts
68
+ path : ./artifacts/**/*
You can’t perform that action at this time.
0 commit comments