Skip to content

Commit

Permalink
ci: disable tag signing when releasing (#33)
Browse files Browse the repository at this point in the history
Currently, the use of the [@semantic-release/git](https://github.com/semantic-release/git)
plugin for signing tags in CI causes the process to hang indefinitely.

Refer to [this](semantic-release/semantic-release#3065)
issue for more details.
  • Loading branch information
kennedykori committed Jan 23, 2024
1 parent 8414e1b commit ef3e225
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -65,7 +65,9 @@ jobs:
git_commit_gpgsign: true
git_committer_email: ${{ secrets.GIT_COMMITTER_EMAIL }}
git_committer_name: ${{ secrets.GIT_COMMITTER_NAME }}
git_tag_gpgsign: true
# Currently, signing commits leads to the CI hanging indefinitely.
# See https://github.com/semantic-release/semantic-release/issues/3065
git_tag_gpgsign: false
git_user_signingkey: true
gpg_private_key: ${{ secrets.GPG_KEY }}
passphrase: ${{ secrets.GPG_KEY_PASSPHRASE }}
Expand Down

0 comments on commit ef3e225

Please sign in to comment.