From 59e057bb43907b3c5675d0d8645d02327f12bef1 Mon Sep 17 00:00:00 2001 From: Muhammed Musaddique K <84737749+zmusaddique@users.noreply.github.com> Date: Wed, 26 Feb 2025 01:11:00 +0530 Subject: [PATCH] Update index.md fix the code snippet in creation of the hugo.yaml file. The code block when copied as a whole and run creates a file in the root folder not .github/workflows/ . --- content/en/hosting-and-deployment/hosting-on-github/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/hosting-and-deployment/hosting-on-github/index.md b/content/en/hosting-and-deployment/hosting-on-github/index.md index 77c77d7f3..6224a9cee 100644 --- a/content/en/hosting-and-deployment/hosting-on-github/index.md +++ b/content/en/hosting-and-deployment/hosting-on-github/index.md @@ -59,7 +59,7 @@ Step 5 ```text mkdir -p .github/workflows -touch hugo.yaml +touch .gihub/workflows/hugo.yaml ``` Step 6