From 5f460871ca77cb6d3c6e17776d9b9dc510bcbb34 Mon Sep 17 00:00:00 2001 From: Danny Hurlburt Date: Mon, 17 Jun 2019 12:10:00 -0600 Subject: [PATCH] Fix Reference to Step --- docs/getting-started-publishing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started-publishing.md b/docs/getting-started-publishing.md index 068b919e3103..e2ea2dda6e75 100644 --- a/docs/getting-started-publishing.md +++ b/docs/getting-started-publishing.md @@ -152,7 +152,7 @@ workflows: Make sure to replace all `<....>` in the `command:` sequence with appropriate values. For ``, it should be a GitHub account that has access to push documentation to your GitHub repository. Many times `` and `` will be the same. -**DO NOT** place the actual value of `$GITHUB_TOKEN` in `circle.yml`. We already configured that as an environment variable back in Step 3. +**DO NOT** place the actual value of `$GITHUB_TOKEN` in `circle.yml`. We already configured that as an environment variable back in Step 5. > If you want to use SSH for your GitHub repository connection, you can set `USE_SSH=true`. So the above command would look something like: `cd website && npm install && GIT_USER= USE_SSH=true npm run publish-gh-pages`.