From 885d87ac0faa41ab998006e2f2ab2fbef47a9b30 Mon Sep 17 00:00:00 2001 From: Almenon Date: Sun, 22 Nov 2020 10:38:15 -0800 Subject: [PATCH] feat(docs): note that publish token is required (#1700) see https://github.com/semantic-release/npm/issues/277 --- docs/recipes/github-actions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/recipes/github-actions.md b/docs/recipes/github-actions.md index 4f1f356f3d..65f3382fad 100644 --- a/docs/recipes/github-actions.md +++ b/docs/recipes/github-actions.md @@ -4,7 +4,7 @@ The [Authentication](../usage/ci-configuration.md#authentication) environment variables can be configured with [Secret Variables](https://help.github.com/en/articles/virtual-environments-for-github-actions#creating-and-using-secrets-encrypted-variables). -In this example an [`NPM_TOKEN`](https://docs.npmjs.com/creating-and-viewing-authentication-tokens) is required to publish a package to the npm registry. GitHub Actions [automatically populate](https://help.github.com/en/articles/virtual-environments-for-github-actions#github_token-secret) a [`GITHUB_TOKEN`](https://help.github.com/en/articles/creating-a-personal-access-token-for-the-command-line) environment variable which can be used in Workflows. +In this example a publish type [`NPM_TOKEN`](https://docs.npmjs.com/creating-and-viewing-authentication-tokens) is required to publish a package to the npm registry. GitHub Actions [automatically populate](https://help.github.com/en/articles/virtual-environments-for-github-actions#github_token-secret) a [`GITHUB_TOKEN`](https://help.github.com/en/articles/creating-a-personal-access-token-for-the-command-line) environment variable which can be used in Workflows. ## Node project configuration