1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 06:31:14 +02:00

scripts/release-notes: Support patch releases

This also fixes the broken case statement, which has globs, not regexes.
This commit is contained in:
Robert Hensing 2023-11-19 18:13:59 +01:00
parent 2a538c571b
commit b1ea30f21d
2 changed files with 71 additions and 18 deletions

View file

@ -150,6 +150,30 @@ release:
## Creating a point release
* Checkout.
```console
$ git checkout XX.YY-maintenance
```
* Determine the next patch version.
```console
$ export VERSION=XX.YY.ZZ
```
* Update release notes.
```console
$ ./scripts/release-notes
```
* Push.
```console
$ git push
```
* Wait for the desired evaluation of the maintenance jobset to finish
building.