Skip to content

Commit

Permalink
docs: update runbooks/backporting-changes-to-older-version.md (#334)
Browse files Browse the repository at this point in the history
This PR just adds information about fixing tags in case they are mixed.
  • Loading branch information
kdoroszko-splunk authored Sep 10, 2024
1 parent 3958686 commit 55904ee
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions runbooks/backporting-changes-to-older-version.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,10 @@ This runbook shows a real example of backporting changes correlated to `ta-autom
- click `Publish release`
- 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`
<img src="images/backporting/compare-tags.png" alt="tags"/>
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:
```
git fetch --tags -f
git tag -f v4 v4.17.1
git push -f --tags
```
- run the workflow for some TA using v4.16 to verify if the pipeline works as expected.

0 comments on commit 55904ee

Please sign in to comment.