mirror of https://github.com/Icinga/icinga2.git
Update Release checklist
This commit is contained in:
parent
fa7bac67d5
commit
694933cb1c
16
RELEASE.md
16
RELEASE.md
|
@ -215,11 +215,21 @@ Once there, navigate to `build/RPMS/noarch` where you'll find the packages.
|
||||||
To build release packages and upload them to [packages.icinga.com](https://packages.icinga.com)
|
To build release packages and upload them to [packages.icinga.com](https://packages.icinga.com)
|
||||||
tag the release commit and push it.
|
tag the release commit and push it.
|
||||||
|
|
||||||
|
RPM/DEB/Raspbian:
|
||||||
|
|
||||||
```
|
```
|
||||||
git tag -s 2.11.0-1
|
git tag -s $VERSION-1 -m "Release v$VERSION-1"
|
||||||
git push origin 2.11.0-1
|
git push origin $VERSION-1
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Windows:
|
||||||
|
|
||||||
|
```
|
||||||
|
git tag -s $VERSION -m "Release v$VERSION"
|
||||||
|
git push origin $VERSION
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
Now cherry pick the release commit to `master` so that the changes are transferred back to it.
|
Now cherry pick the release commit to `master` so that the changes are transferred back to it.
|
||||||
|
|
||||||
**Attention**: Only the release commit. *NOT* the one switching the build type!
|
**Attention**: Only the release commit. *NOT* the one switching the build type!
|
||||||
|
@ -248,7 +258,7 @@ are triggered and automatically published to packages.icinga.com
|
||||||
### CentOS
|
### CentOS
|
||||||
|
|
||||||
```
|
```
|
||||||
docker run -ti centos:latest bash
|
docker run -ti centos:7 bash
|
||||||
|
|
||||||
yum -y install https://packages.icinga.com/epel/icinga-rpm-release-7-latest.noarch.rpm
|
yum -y install https://packages.icinga.com/epel/icinga-rpm-release-7-latest.noarch.rpm
|
||||||
yum -y install epel-release
|
yum -y install epel-release
|
||||||
|
|
Loading…
Reference in New Issue