-
-
Notifications
You must be signed in to change notification settings - Fork 286
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[doc] Update documentation about release tagging
- Loading branch information
Showing
1 changed file
with
13 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,14 +11,24 @@ A release is represented by: | |
* An updated package on deb.globaleaks.org; | ||
* A signed repository. | ||
|
||
Release tagging | ||
=============== | ||
To release is tagger by means of the official version bump script by issuing: | ||
Release versioning | ||
================== | ||
A new release version is issued by means of the official version bump script by issuing: | ||
|
||
.. code:: sh | ||
cd GlobaLeaks && ./scripts/bump_version.sh $version | ||
Release tagging | ||
=============== | ||
The release is tagged by meand of the following commands | ||
|
||
.. code:: sh | ||
export DEBFULLNAME="GlobaLeaks software signing key" | ||
export DEBEMAIL="[email protected]" | ||
git tag -s v0.1 -m 'GlobaLeaks version 0.1' | ||
git push origin --tags | ||
Release packaging | ||
================= | ||
The package is built by means of the official build script by issuing: | ||
|