Open hayesmaker opened 3 years ago
Semantic-Release uses the @semantic-release/github
plugin by default. (Cf documentation)
I managed to fix this issue by overriding the plugin list in my .releaserc.yml
config:
plugins:
- '@semantic-release/commit-analyzer'
- '@semantic-release/release-notes-generator'
- '@semantic-release/npm'
- '@semantic-release/gitlab' # Override the default @semantic-release/github plugin
I'm not aware of any Bitbucket plugin though.
I guess you still can do it by using the @semantic-release/git
plugin.
How do you pass the verifyConditions step when using Bitbucket repo instead of Github?
I have created a bit bucket personal access token and set my GITHUB_TOKEN env var to that. But multi-semantic-release keeps failing saying I haven't set my GITHUB_TOKEN. Is this project depending on using Github for this? How do I configure this to accept Bitbucket?