diff --git a/.github/workflows/nuget_push.yml b/.github/workflows/nuget_push.yml index 1d7266d..6ebfec7 100644 --- a/.github/workflows/nuget_push.yml +++ b/.github/workflows/nuget_push.yml @@ -39,8 +39,7 @@ jobs: - name: Package run: dotnet pack --configuration Release - - name: Move To Release Dir - run: cd src/Validations/bin/Release - - name: Deploy To Nuget.org - run: dotnet nuget push "*.nupkg" -k ${{secrets.NUGET_DEPLOYMENT_KEY}} -s https://api.nuget.org/v3/index.json + run:run: | + cd src/Validations/bin/Release + dotnet nuget push "**/*.nupkg" -k ${{secrets.NUGET_DEPLOYMENT_KEY}} -s https://api.nuget.org/v3/index.json diff --git a/src/Validations/Validations.csproj b/src/Validations/Validations.csproj index 67243aa..3898a59 100644 --- a/src/Validations/Validations.csproj +++ b/src/Validations/Validations.csproj @@ -23,7 +23,7 @@ true Preconditions;Postconditions;Invariants;DDD;Domain Driven Design icon.png - 3.0.3-alpha + 3.0.4-alpha enable true latest @@ -38,7 +38,7 @@ Breaking Changes - void CompliesWith(in bool, in string, in string) Bug fixes: - - #24 Nuget push fails because of glob pattern. + - #26 Nuget push failing. Features - Introduce implicit null check for NotNullEmptyOrWhiteSpaceOnly (now NotEmptyOrWhiteSpaceOnly) and NotNullOrEmpty (now NotEmpty).