mirror of
https://github.com/gradle/wrapper-validation-action
synced 2024-11-23 17:22:01 +00:00
Document release process
Signed-off-by: Paul Merlin <paul@gradle.com>
This commit is contained in:
parent
8cb3a6f68d
commit
6651bb31dd
1 changed files with 14 additions and 0 deletions
14
RELEASING.md
Normal file
14
RELEASING.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
# Release
|
||||
|
||||
* starting on `master`
|
||||
* `npm run all`
|
||||
* `git checkout releases/v1`
|
||||
* `git merge master`
|
||||
* `npm prune --production`
|
||||
* `git add -f node_modules`
|
||||
* if changed dependencies `git commit -m Dependencies && git push`
|
||||
* `git tag v1.0.x && git push --tags` with the actual version number
|
||||
* `git tag --delete v1 && git push --delete origin v1 && git tag v1 && git push --tags`
|
||||
* go to https://github.com/gradle/wrapper-validation-action/releases
|
||||
* edit and publish the now drafted `v1` release
|
||||
* create a new release from the new full version number `v1.0.x`, list the fixed issues and publish the release
|
Loading…
Reference in a new issue