-
Notifications
You must be signed in to change notification settings - Fork 7
Description
TagBot could not automatically create releases for the following versions. This may be because:
- The commits modify workflow files (
.github/workflows/), whichGITHUB_TOKENcannot operate on - The tag already exists but the release failed to be created
- A network or API error occurred
Versions needing manual release
-
v0.9.8at commitb584cc93- Error: Git command 'git -C /tmp/tagbot_repo_l6gh7zju push origin v0.9.8' failed: git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.
- Error: Git command 'git -C /tmp/tagbot_repo_l6gh7zju push origin v0.9.8' failed: git@github.com: Permission denied (publickey).
Please make sure you have the correct access rights
and the repository exists. (configure SSH deploy key or switch to https with PAT)
-
v0.9.9at commit40919293- Error: Git command 'git -C /tmp/tagbot_repo_l6gh7zju push origin v0.9.9' failed: git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.
- Error: Git command 'git -C /tmp/tagbot_repo_l6gh7zju push origin v0.9.9' failed: git@github.com: Permission denied (publickey).
Please make sure you have the correct access rights
and the repository exists. (configure SSH deploy key or switch to https with PAT)
-
v0.9.17at commitbc3cc009- Error: Git command 'git -C /tmp/tagbot_repo_l6gh7zju push origin v0.9.17' failed: git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.
- Error: Git command 'git -C /tmp/tagbot_repo_l6gh7zju push origin v0.9.17' failed: git@github.com: Permission denied (publickey).
Please make sure you have the correct access rights
and the repository exists. (configure SSH deploy key or switch to https with PAT)
How to fix
Run these commands locally:
git tag -a v0.9.8 b584cc932d0b7df7455342b72b5cdd3fbbec7f94 -m 'v0.9.8' && git push origin v0.9.8 && gh release create v0.9.8 --generate-notes
git tag -a v0.9.9 40919293337efaa87ba564c223235696fdd34587 -m 'v0.9.9' && git push origin v0.9.9 && gh release create v0.9.9 --generate-notes
git tag -a v0.9.17 bc3cc009da2aabd29a186407ae93d8c20f52f80a -m 'v0.9.17' && git push origin v0.9.17 && gh release create v0.9.17 --generate-notesOr create releases manually via the GitHub UI.
Prevent this in the future
If this is due to workflow file changes, avoid modifying them in the same commit as version bumps, or use a Personal Access Token with workflow scope.
See TagBot troubleshooting for details.
This issue was automatically created by TagBot. (Run logs)