Skip to content

Commit 55904ee

Browse files
docs: update runbooks/backporting-changes-to-older-version.md (#334)
This PR just adds information about fixing tags in case they are mixed.
1 parent 3958686 commit 55904ee

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

runbooks/backporting-changes-to-older-version.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,10 @@ This runbook shows a real example of backporting changes correlated to `ta-autom
4343
- click `Publish release`
4444
- check if the release is available, and it points at the proper version - https://github.com/splunk/addonfactory-workflow-addon-release/tags tag `v4.16` should point to the same commit as tag `v4.16.15`
4545
<img src="images/backporting/compare-tags.png" alt="tags"/>
46+
Backporting changes will cause that the tag `v4` will point at the same commit as `v4.16`. To make it proper one has to either re-trigger the workflow which produced the latest tag (`v4.17.1`) or resolve that manually:
47+
```
48+
git fetch --tags -f
49+
git tag -f v4 v4.17.1
50+
git push -f --tags
51+
```
4652
- run the workflow for some TA using v4.16 to verify if the pipeline works as expected.

0 commit comments

Comments
 (0)