From 0c33b05de55c9c8ae9863211923db4d6284438b0 Mon Sep 17 00:00:00 2001 From: Valentin Heidelberger <31535155+va1entin@users.noreply.github.com> Date: Thu, 13 May 2021 13:50:41 +0200 Subject: [PATCH] Hosting on GitHub: Little wording fixes and update Ubuntu runner in example workflow to 20.04 (#1457) --- content/en/hosting-and-deployment/hosting-on-github.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/en/hosting-and-deployment/hosting-on-github.md b/content/en/hosting-and-deployment/hosting-on-github.md index 9b318f45d..4cb4d5e84 100644 --- a/content/en/hosting-and-deployment/hosting-on-github.md +++ b/content/en/hosting-and-deployment/hosting-on-github.md @@ -17,7 +17,7 @@ toc: true aliases: [/tutorials/github-pages-blog/] --- -GitHub provides free and fast static hosting over SSL for personal, organization, or project pages directly from a GitHub repository via its [GitHub Pages service][] and automate development workflows and build with [GitHub Actions]. +GitHub provides free and fast static hosting over SSL for personal, organization, or project pages directly from a GitHub repository via its [GitHub Pages service][] and automating development workflows and build with [GitHub Actions]. ## Assumptions @@ -45,7 +45,7 @@ This is a much simpler setup as your Hugo files and generated content are publis ## Build Hugo With GitHub Action -GitHub execute your software development workflows. Everytime you push your code on the Github repository, Github Action will build the site automatically. +GitHub executes your software development workflows. Everytime you push your code on the Github repository, Github Actions will build the site automatically. Create a file in `.github/workflows/gh-pages.yml` containing the following content (based on https://github.com/marketplace/actions/hugo-setup ): @@ -59,7 +59,7 @@ on: jobs: deploy: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 with: