From 62e5a4cc498814c25eef5dfcfacb2a13d59bdfe0 Mon Sep 17 00:00:00 2001 From: peaceiris <30958501+peaceiris@users.noreply.github.com> Date: Thu, 9 Sep 2021 14:03:22 +0900 Subject: [PATCH] Update github_token section --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3a7a9cf..c3c7dce 100644 --- a/README.md +++ b/README.md @@ -175,9 +175,10 @@ jobs: ### ⭐️ Set Runner's Access Token `github_token` -**This option is for `GITHUB_TOKEN`, not a personal access token.** - -A GitHub Actions runner automatically creates a `GITHUB_TOKEN` secret to use in your workflow. You can use the `GITHUB_TOKEN` to authenticate in a workflow run. +For newbies of GitHub Actions: +Note that this option is for `GITHUB_TOKEN`, **NOT** a personal access token. +A GitHub Actions runner automatically creates a `GITHUB_TOKEN` secret to authenticate in your workflow. +So, you can start to deploy immediately without any configuration. ```yaml - name: Deploy @@ -187,7 +188,7 @@ A GitHub Actions runner automatically creates a `GITHUB_TOKEN` secret to use in publish_dir: ./public ``` -For more details about `GITHUB_TOKEN`: [Authenticating with the GITHUB_TOKEN - GitHub Help](https://help.github.com/en/actions/configuring-and-managing-workflows/authenticating-with-the-github_token) +For more details about `GITHUB_TOKEN`: [Authenticating with the GITHUB_TOKEN - GitHub Help](https://docs.github.com/en/actions/reference/authentication-in-a-workflow) ### ⭐️ Set SSH Private Key `deploy_key`