Skip to content

Commit

Permalink
Version bump and push shell scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesRandall committed Feb 9, 2020
1 parent 0d0d1bf commit 42686f7
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<CommonPackageVersion>4.0.39-beta.4</CommonPackageVersion>
<CommonPackageVersion>4.0.40-beta.4</CommonPackageVersion>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>FunctionMonkey.Compiler</id>
<version>4.0.39-beta.4</version>
<version>4.0.40-beta.4</version>
<authors>James Randall</authors>
<description>Generates Azure Functions from command registrations</description>
<licenseUrl>https://raw.githubusercontent.com/JamesRandall/FunctionMonkey/master/LICENSE</licenseUrl>
Expand Down
2 changes: 1 addition & 1 deletion pack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ dotnet pack ./Source/FunctionMonkey.Testing/FunctionMonkey.Testing.csproj --outp
dotnet pack ./Source/FunctionMonkey.TokenValidator/FunctionMonkey.TokenValidator.csproj --output ./ --configuration Release
dotnet pack ./Source/FunctionMonkey.AspNetCore/FunctionMonkey.AspNetCore.csproj --output ./ --configuration Release
dotnet pack ./Source/FunctionMonkey.FSharp/FunctionMonkey.FSharp.fsproj --output ./ --configuration Release
dotnet pack ./Source/FunctionMonkey.MediatR/FunctionMonkey.MediatR.fsproj --output ./ --configuration Release
dotnet pack ./Source/FunctionMonkey.MediatR/FunctionMonkey.MediatR.csproj --output ./ --configuration Release
3 changes: 3 additions & 0 deletions packandpush.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
rm *.nupkg
./pack.sh
./push.sh
12 changes: 12 additions & 0 deletions push.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
dotnet nuget push FunctionMonkey.Abstractions.4.0.40-beta.4.nupkg --api-key $NUGETKEY --source https://api.nuget.org/v3/index.json
dotnet nuget push FunctionMonkey.AspNetCore.4.0.40-beta.4.nupkg --api-key $NUGETKEY --source https://api.nuget.org/v3/index.json
dotnet nuget push FunctionMonkey.Commanding.Abstractions.4.0.40-beta.4.nupkg --api-key $NUGETKEY --source https://api.nuget.org/v3/index.json
dotnet nuget push FunctionMonkey.Commanding.Cosmos.Abstractions.4.0.40-beta.4.nupkg --api-key $NUGETKEY --source https://api.nuget.org/v3/index.json
dotnet nuget push FunctionMonkey.Compiler.4.0.40-beta.4.nupkg --api-key $NUGETKEY --source https://api.nuget.org/v3/index.json
dotnet nuget push FunctionMonkey.FSharp.4.0.40-beta.4.nupkg --api-key $NUGETKEY --source https://api.nuget.org/v3/index.json
dotnet nuget push FunctionMonkey.FluentValidation.4.0.40-beta.4.nupkg --api-key $NUGETKEY --source https://api.nuget.org/v3/index.json
dotnet nuget push FunctionMonkey.MediatR.4.0.40-beta.4.nupkg --api-key $NUGETKEY --source https://api.nuget.org/v3/index.json
dotnet nuget push FunctionMonkey.SignalR.4.0.40-beta.4.nupkg --api-key $NUGETKEY --source https://api.nuget.org/v3/index.json
dotnet nuget push FunctionMonkey.Testing.4.0.40-beta.4.nupkg --api-key $NUGETKEY --source https://api.nuget.org/v3/index.json
dotnet nuget push FunctionMonkey.Testing.Tests --api-key $NUGETKEY --source https://api.nuget.org/v3/index.json
dotnet nuget push FunctionMonkey.TokenValidator.4.0.40-beta.4.nupkg --api-key $NUGETKEY --source https://api.nuget.org/v3/index.json

0 comments on commit 42686f7

Please sign in to comment.