From 91c021ab3e9a4cd670350b475fea9bf8750d66cc Mon Sep 17 00:00:00 2001 From: andchar <63967764+andchar@users.noreply.github.com> Date: Thu, 15 Jul 2021 08:03:07 +0300 Subject: [PATCH] fixed path to ci.yml --- language/golang/configure-ci-cd.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/golang/configure-ci-cd.md b/language/golang/configure-ci-cd.md index b81867ace1..dfeb346d7d 100644 --- a/language/golang/configure-ci-cd.md +++ b/language/golang/configure-ci-cd.md @@ -110,7 +110,7 @@ The following sequence of `steps` achieves the goals we just set. ``` {% endraw %} -As is usual with YAML files, be aware of indentation. The complete workflow file for reference is available in the project's repo, under the name of `.github/workflow/ci.yml`. +As is usual with YAML files, be aware of indentation. The complete workflow file for reference is available in the project's repo, under the name of `.github/workflows/ci.yml`. This should be enough to test our approach to CI. Change the workflow file name from `main.yml` to `ci.yml` and press **Start commit** button. Fill out the commit details in your preferred style and press **Commit new file**. GitHub Actions are saved as YAML files in `.github/workflows` directory and GitHub web interface would do that for us.