-
-
Notifications
You must be signed in to change notification settings - Fork 934
Create signed tags and verify those #611
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
But signing tags should work with something like this: repo.create_tag(tagname,
message=tag_txt,
sign=True,
local_user=master_key) |
@ankostis Thanks, I will try. Can you please tell me from where you got this information. I cannot find this in the API reference at all. Also the local_user option is missing: |
I made it half working with this. But it still throws a lot of errors: self.repo.create_tag(self.config['tag'],
message=self.config['message'],
sign=True,
local_user=self.config['fingerprint'])
self.repo.create_tag(self.config['tag'],
verify=True)
Edit: try:
self.repo.create_tag(self.config['tag'],
verify=True,
ref=None)
print('okay')
except:
print('not okay') |
@NicoHood Does this resolve your issue? If so, I would think closing the issue is the way to go. |
@Byron It is solved like that if one knows this information. A simple wrapper function to verify a tag would be appreciated. Then users dont need to find this issue via google and can use a more common way. |
@NicoHood You are welcome to contribute this helper function :). |
Hi,
I need to create and verify gpg signed tags. It seems there is no such option yet, but is an extremely critical feature for my application. Is there a chance to see this implemented?
The text was updated successfully, but these errors were encountered: