1password seems to include my SSH private key in the tag message when signing a git tag.
I am using 1Password and the SSH agent to store my SSH keys and sign git commits, and it works great!
However, when I sign a git tag my private key is included in the tag message. This is then displayed in plane text when I push the tag to GitLab.
My .gitconfig file includes:
```
[user]
name =
email =
signingkey =
[gpg]
format = ssh
[gpg "ssh"]
program = "/Applications/1Password.app/Contents/MacOS/op-ssh-sign"
allowedSignersFile = "~/.ssh/allowed_signers"
[commit]
gpgsign = true
[tag]
gpgsign = true
```
I generate the tag with: git tag -a "tag-name" -m "tag-message"
When I run git show tag-name, I see:
```
tag tag-name
Tagger:
Date:
tag-message
commit ....
```
I am going to have to disable signing my git tags with 1Password for the time being, so any help to resolve this would be greatly appreciated!
1Password Version: 8.10.4
Extension Version: Not Provided
OS Version: MacOS 13.3.1
Browser:_ Not Provided
