Gitlab EE v12.3.5: Git tags added by python-semantic-release do not show up on the UI

I am using the python-semantic-release package to auto version/tag the repo. The tags shows up on the command line:

git tag -l
v0.0.1
v0.0.2
lines 1-2/2 (END) 

However, when I go to the Gitlab CI page and goto Repository->Tags, there is nothing there. Any ideas how to fix this?

Tags were not being pushed with git push. Added git config --global push.followTags true. Now they show up in Gitlab UI.

1 Like