NPM_TOKEN
is required to publish a package to the npm registry. GitHub Actions automatically populate a GITHUB_TOKEN
environment variable which can be used in Workflows..github/workflows/release.yml
configuration for Node projectssemantic-release
with a build running on the latest LTS version of Node when a new commit is pushed to a master
branch. See Configuring a Workflow for additional configuration options.package.json
changes to a master
branchGITHUB_TOKEN
cannot be used if branch protection is enabled for the target branch. It is not advised to mitigate this limitation by overriding an automatically populated GITHUB_TOKEN
variable with a Personal Access Tokens, as it poses a security risk. Since Secret Variables are available for Workflows triggered by any branch, it becomes a potential vector of attack, where a Workflow triggered from a non-protected branch can expose and use a token with elevated permissions, yielding branch protection insignificant. One can use Personal Access Tokens in trusted environments, where all developers should have the ability to perform administrative actions in the given repository and branch protection is enabled solely for convenience purposes, to remind about required reviews or CI checks.persist-credentials
option needs to be false
, otherwise the generated GITHUB_TOKEN
will interfere with the custom one. Example:repository_dispatch
event to have control on when to generate a release by making an HTTP request, e.g.:GITHUB_TOKEN
environment variable):