From 191d839d834fcd2a3ff56688f10db4a3aa4f978e Mon Sep 17 00:00:00 2001 From: Jamie Pollock Date: Mon, 15 Jan 2024 16:19:04 -0500 Subject: [PATCH] Update Publish-to-NuGet.yml Attempting to fix if check --- .github/workflows/Publish-to-NuGet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Publish-to-NuGet.yml b/.github/workflows/Publish-to-NuGet.yml index 216d995..8b0f1c1 100644 --- a/.github/workflows/Publish-to-NuGet.yml +++ b/.github/workflows/Publish-to-NuGet.yml @@ -50,7 +50,7 @@ jobs: run: dotnet pack ./src/Rhythm.Drop.Infrastructure/Rhythm.Drop.Infrastructure.csproj --no-restore -c $BUILD_CONFIG /p:version=$PACKAGE_VERSION - name: Pack Rhythm.Drop.Builders - if: ${{ ! startsWith($PACKAGE_VERSION, '1.') }} + if: ${{ ! startsWith(env.PACKAGE_VERSION, '1.') }} run: dotnet pack ./src/Rhythm.Drop.Builders/Rhythm.Drop.Builders.csproj --no-restore -c $BUILD_CONFIG /p:version=$PACKAGE_VERSION - name: Pack Rhythm.Drop.Web.Infrastructure