Skip to content

Commit 3c40e11

Browse files
committed
2 parents db34dca + da9e820 commit 3c40e11

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build-publish-nuget.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
DOTNET_VERSION: 9.0.x
2424
SRC_DIRECTORY_PATH_LIB: ${{ github.workspace }}/src
2525
PROJECT_NAME_LIB: PublicInterfaceGenerator
26-
NUGET_VERSION: ${{ github.event.inputs.nuget_version_override || '1.0.2-preview' }}.${{ github.run_number }}
26+
NUGET_VERSION: ${{ github.event.inputs.nuget_version_override || '1.0.3-preview' }}.${{ github.run_number }}
2727
PUSH_NUGET: ${{ github.event.inputs.push_nuget || false }}
2828

2929
steps:

src/CodeUpdater/CodeUpdater/PreRunValidator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ private async ValueTask<bool> CanCheckNpmUpdatesAsync()
6060

6161
if (!jsonDoc.RootElement.TryGetProperty("dependencies", out var dependenciesElement))
6262
{
63-
Logger.Error($"`npm list` command is missing the `dependencies` element. Cannot verify the `npm-check-updates` package is installed");
63+
Logger.Error($"`npm list` command is missing the `dependencies` element. Cannot verify the `npm-check-updates` package is installed. You may need to manually install `npm-check-updates` by running the command `npm install -g npm-check-updates`");
6464
return false;
6565
}
6666

0 commit comments

Comments
 (0)