Skip to content

Commit 3ef8338

Browse files
committed
Add small doc file describing release workflow
1 parent 55e56b3 commit 3ef8338

File tree

2 files changed

+68
-0
lines changed

2 files changed

+68
-0
lines changed

PUBLISH.md

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# Creating a new release
2+
3+
> This is meant as an *internal* note on how to build and publish a new version of this Ansible Collection.
4+
5+
1. **Get the release branch ready:**
6+
Push your local changes to the remote.
7+
From your local release branch:
8+
```
9+
git push --set-upstream origin release/<VERSION>
10+
```
11+
12+
To avoid having leftover files from your local directory end up in the release, please **cleanly clone the release branch to another directory**.
13+
```
14+
git clone --branch release/<VERSION> [email protected]:Icinga/ansible-collection-icinga.git release_<VERSION>
15+
cd release_<VERSION>
16+
```
17+
You now only have files that were actually commmited.
18+
19+
2. **Increase the version number:**
20+
The version of this Collection - as seen by Ansible Galaxy - is determined by **galaxy.yml**.
21+
Increase the version number inside accordingly.
22+
23+
3. **Create a changelog summary:**
24+
This will be shown in the changelog as a short summary for this release.
25+
26+
changelogs/fragments/release_summary.yml:
27+
```
28+
release_summary: |
29+
Summary text for this release.
30+
"*Bugfix release*" for example.
31+
```
32+
33+
4. **Create a new changelog:**
34+
Lint the changelogs:
35+
```
36+
antsibull-changelog lint
37+
```
38+
39+
Generate the changelog:
40+
```
41+
antsibull-changelog release --version <VERSION>
42+
```
43+
44+
Commit your changes to the release branch.
45+
46+
5. **Build and push to Ansible Galaxy:**
47+
Build a release tar ball (verbose shows skipped files):
48+
```
49+
ansible-galaxy collection build -vvv
50+
```
51+
52+
Push to Ansible Galaxy:
53+
```
54+
ansible-galaxy collection publish --token <TOKEN> icinga-icinga-<VERSION>.tar.gz
55+
```
56+
> This might show errors which does **not** necessarily mean that it failed.
57+
> Have a look at [Ansible Galaxy](https://galaxy.ansible.com/ui/repo/published/icinga/icinga/) and confirm if the release could be published.
58+
59+
6. **Create a release on GitHub:**
60+
When [creating a new release](https://github.com/Icinga/ansible-collection-icinga/releases/new)
61+
62+
- choose \<VERSION\> as tag
63+
- choose the branch "release/\<VERSION\>" as target (will be tagged)
64+
- choose \<VERSION\> as title
65+
- copy and paste the release's changelog entry (see [prior releases](https://github.com/Icinga/ansible-collection-icinga/releases))
66+
- attach the created tar ball (icinga-icinga-\<VERSION\>.tar.gz) to the release
67+
- if you feel extra nice, credit contributors by adding their names, e.g. behind the respective issue or feature (`@name`)

galaxy.yml

+1
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,4 @@ build_ignore:
4343
- changelogs
4444
- .idea
4545
- '*.tar.gz'
46+
- PUBLISH.md

0 commit comments

Comments
 (0)