Created
November 15, 2018 09:10
-
-
Save AnthonySteele/e031652f89c97cda8d398156aae2529e to your computer and use it in GitHub Desktop.
NuKeeper Release Checklist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rem nukeeper release script | |
rem in cmd: | |
cd C:\Code\NuKeeper\NuKeeper | |
del C:\Code\NuKeeper\NuKeeper\bin\Debug\*.nupkg | |
dotnet build | |
dotnet pack | |
cd C:\Code\NuKeeper\NuKeeper\bin\Debug | |
dir | |
dotnet nuget push C:\Code\NuKeeper\NuKeeper\bin\Debug\nukeeper*.nupkg --source https://api.nuget.org/v3/index.json --api-key nuget_api_key | |
# bash, tag and release notes | |
git tag -a v<version_number> -m "version <version_number>" | |
git push origin <tag_name> | |
git push upstream <tag_name> | |
Update docker version | |
New image to dockerhub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment