Skip to content

Commit

Permalink
Closes #26
Browse files Browse the repository at this point in the history
  • Loading branch information
lsolano committed Nov 11, 2021
1 parent 4b1e95f commit 774c686
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/nuget_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions src/Validations/Validations.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageTags>Preconditions;Postconditions;Invariants;DDD;Domain Driven Design</PackageTags>
<PackageIcon>icon.png</PackageIcon>
<Version>3.0.3-alpha</Version>
<Version>3.0.4-alpha</Version>
<Nullable>enable</Nullable>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
Expand All @@ -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).
Expand Down

0 comments on commit 774c686

Please sign in to comment.