From 61e53bf4bbb57c49f1f2c44558c447a45a50dec4 Mon Sep 17 00:00:00 2001 From: James Panther <4462786+jpanther@users.noreply.github.com> Date: Thu, 10 Nov 2022 13:01:13 +1100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Update=20versions=20in=20deploym?= =?UTF-8?q?ent=20docs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- exampleSite/content/docs/hosting-deployment/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/exampleSite/content/docs/hosting-deployment/index.md b/exampleSite/content/docs/hosting-deployment/index.md index a88486cc..93e6c557 100644 --- a/exampleSite/content/docs/hosting-deployment/index.md +++ b/exampleSite/content/docs/hosting-deployment/index.md @@ -45,7 +45,7 @@ on: jobs: build-deploy: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest concurrency: group: ${{ github.workflow }}-${{ github.ref }} steps: @@ -99,11 +99,11 @@ Then in the root of your site repository, create a `netlify.toml` file: TZ = "UTC" # Set to preferred timezone [context.production.environment] - HUGO_VERSION = "0.100.2" + HUGO_VERSION = "0.105.0" HUGO_ENV = "production" [context.deploy-preview.environment] - HUGO_VERSION = "0.100.2" + HUGO_VERSION = "0.105.0" ``` This configuration assumes you are deploying Congo as a Hugo module. If you have installed the theme using another method, change the build command to simply `hugo --gc --minify -b $URL`.