Skip to content

Commit 1adbe80

Browse files
committed
try alternate nuget package id
1 parent 898ec89 commit 1adbe80

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/dotnet.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,10 +122,12 @@ jobs:
122122
- name: Build
123123
shell: pwsh
124124
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
126127
- name: Test
127128
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
129131
- name: Upload coverage to codecov.io
130132
if: matrix.os == 'ubuntu-latest'
131133
uses: codecov/codecov-action@v3

0 commit comments

Comments
 (0)