diff options
author | 2021-08-12 20:24:06 +0200 | |
---|---|---|
committer | 2021-08-12 13:24:06 -0500 | |
commit | cbae535cad6790b60affc5391d3cab194701ee65 (patch) | |
tree | 9576a0c1bd390acbf7ef161e34b99160df8b02d5 /docs/src/pages/guides/deploy.md | |
parent | fbbb589d921cae62f42694c3081ebf8378d24a80 (diff) | |
download | astro-cbae535cad6790b60affc5391d3cab194701ee65.tar.gz astro-cbae535cad6790b60affc5391d3cab194701ee65.tar.zst astro-cbae535cad6790b60affc5391d3cab194701ee65.zip |
Fix typos in the docs/ content (#1093)
Co-authored-by: mundry <mundry@users.noreply.github.com>
Diffstat (limited to 'docs/src/pages/guides/deploy.md')
-rw-r--r-- | docs/src/pages/guides/deploy.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/src/pages/guides/deploy.md b/docs/src/pages/guides/deploy.md index de1161945..de8aa69b6 100644 --- a/docs/src/pages/guides/deploy.md +++ b/docs/src/pages/guides/deploy.md @@ -68,15 +68,15 @@ By default, the build output will be placed at `dist/`. You may deploy this `dis ### GitHub Actions -1. In the astro project repo, create `gh-pages` branch then go to Settings > Pages and set to `gh-pages` branch for Github Pages and set directory to `/` (root). +1. In the astro project repo, create `gh-pages` branch then go to Settings > Pages and set to `gh-pages` branch for GitHub Pages and set directory to `/` (root). 2. Set the correct `buildOptions.site` in `astro.config.mjs`. 3. Create the file `.github/workflows/main.yml` and add in the yaml below. Make sure to edit in your own details. -4. In Github go to Settings > Developer settings > Personal Access tokens. Generate a new token with repo permissions. +4. In GitHub go to Settings > Developer settings > Personal Access tokens. Generate a new token with repo permissions. 5. In the astro project repo (not \<YOUR USERNAME\>.github.io) go to Settings > Secrets and add your new personal access token with the name `API_TOKEN_GITHUB`. 6. When you push changes to the astro project repo CI will deploy them to \<YOUR USERNAME\>.github.io for you. ```yaml -# Workflow to build and deploy to your Github Pages repo. +# Workflow to build and deploy to your GitHub Pages repo. # Edit your project details here. # Remember to add API_TOKEN_GITHUB in repo Settings > Secrets as well! |