File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -122,10 +122,12 @@ jobs:
122
122
- name : Build
123
123
shell : pwsh
124
124
run : |
125
- dotnet build --no-restore --configuration Release --version-suffix=$env:PACKAGE_VERSION_SUFFIX
125
+ # TODO: Revert package id after testing
126
+ dotnet build --property:PackageId=The.Other.JADNC.Package --no-restore --configuration Release --version-suffix=$env:PACKAGE_VERSION_SUFFIX
126
127
- name : Test
127
128
run : |
128
- dotnet test --no-build --configuration Release --collect:"XPlat Code Coverage" --logger "GitHubActions;summary.includeSkippedTests=true" -- RunConfiguration.CollectSourceInformation=true DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.DeterministicReport=true
129
+ # TODO: Revert package id after testing
130
+ dotnet test --property:PackageId=The.Other.JADNC.Package --no-build --configuration Release --collect:"XPlat Code Coverage" --logger "GitHubActions;summary.includeSkippedTests=true" -- RunConfiguration.CollectSourceInformation=true DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.DeterministicReport=true
129
131
- name : Upload coverage to codecov.io
130
132
if : matrix.os == 'ubuntu-latest'
131
133
uses : codecov/codecov-action@v3
You can’t perform that action at this time.
0 commit comments