blob: 03a8d61fe7f05a581924f2defe3318732e8b0c2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
This document briefly describes how to make a installation-guide release.
- First make sure to be up to date
git pull
- Set the release date
dch -r
and set the package version to the date.
- Commit that
git commit
- Build (use a machine with a lot of cores to make this fast)
pdebuild
- Compare against a previous version to make sure we didn't mess it up
completely
debdiff installation-guide_2017WWWW_amd64.changes installation-guide_2017XXXX_amd64.changes
- Upload the result
- When ACCEPTed, Tag the commit:
git tag 2017XXXX
git push
git push --tags
|