Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(mkdocs-tuto): typos #4673

Merged
merged 1 commit into from
Mar 21, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tutorials/deploy-automate-mkdocs-site/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,14 @@ Statements allow you to define who can perform what actions on your bucket. In t
- Select `Applications` in the **Principals** drop-down.
- Select your IAM application (`doc website GitHub Actions`) in the **Applications** drop-down.
- Select `s3:PutObject` in the **Actions** drop-down.
- Enter `*` in the the **Resource** field.
- Enter `*` in the **Resource** field.

7. Click **+ Add statement** again. We are defining the statement that grants public read access to your website's content:

- Enter a unique statement ID describing the purpose of the statement. For example `Grant public read access to website`.
- Select `All principals (*)` in the **Principals** drop-down.
- Select `s3:GetObject` in the **Actions** drop-down.
- Enter `*` in the the **Resource** field. This allows anyone to read objects from your bucket.
- Enter `*` in the **Resource** field. This allows anyone to read objects from your bucket.
8. Click **Save changes**.

## Setting up your GitHub repository
Expand Down Expand Up @@ -147,7 +147,7 @@ In this section, we will be adding the following values (secrets) in our GitHub

1. Access your GitHub repository.
2. Click the **Settings** tab.
3. Click the **Secrets and varaibles** section, then click **Actions**. You are redirected to the **Secrets** tab.
3. Click the **Secrets and variables** section, then click **Actions**. You are redirected to the **Secrets** tab.
4. Click **New repository secret**.
5. Enter a name and a secret for each of the values listed above. For example, enter `DOC_ACCESS_KEY` in the **Name** field, and `SCWXXXXXXXXXXXXXXXXX` in the **Secret** field.
6. Click **Add secret** and repeat the operation for the other 3 secrets.
Expand Down Expand Up @@ -188,4 +188,4 @@ GitHub Actions will:

If you expect high traffic, consider using our [Edge Services](/edge-services/quickstart/) solution for caching.

If you have a custom domain, you can link it to your documentation website in your `mkdocs.yml` file.
If you have a custom domain, you can link it to your documentation website in your `mkdocs.yml` file.
Loading