semantic-release-cli is currently not working, as it utilizes basic auth for authentication, which is no longer supported by GitHub.
Until we resolve this issue by implementing a OAuth web flow, this is what my usual release GitHub action looks like:
https://github.com/octokit/core.js/blob/master/.github/workflows/release.yml
You don't need to configure the GITHUB_TOKEN, it's already provided. Unless you have actions triggered by the release event, in which case you need to use a personal access token, because actions don't trigger actions.
Hope that helps. Let me know if you have any questions
semantic-release-cliis currently not working, as it utilizes basic auth for authentication, which is no longer supported by GitHub.Until we resolve this issue by implementing a OAuth web flow, this is what my usual release GitHub action looks like:
https://github.com/octokit/core.js/blob/master/.github/workflows/release.yml
You don't need to configure the GITHUB_TOKEN, it's already provided. Unless you have actions triggered by the release event, in which case you need to use a personal access token, because actions don't trigger actions.
Hope that helps. Let me know if you have any questions