I created a tag in repository using git lib in python. this code works fine and creates a new tag:
repo = Repo(repo_path)
repo.create_tag('some tag..')
now I'm trying to make this tag into a Release and yet found a solution.
thanks
I created a tag in repository using git lib in python. this code works fine and creates a new tag:
repo = Repo(repo_path)
repo.create_tag('some tag..')
now I'm trying to make this tag into a Release and yet found a solution.
thanks
You do not attach anything, the create_tag creates a tag that points to the current build in git hub, when you do repo.create_tag('some tag..') git creates a tag and links that snapshot of your project.
So all you need to do is create_tag and commit & push, thats it.