From a135e52a02e949daed4f958cc6d12aeacbe6510b Mon Sep 17 00:00:00 2001 From: Joe Mooring Date: Fri, 25 Aug 2023 11:07:36 -0700 Subject: [PATCH] Update GitHub hosting instructions --- .../hosting-on-github/index.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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 dd8bf5583..bfb16dc81 100644 --- a/content/en/hosting-and-deployment/hosting-on-github/index.md +++ b/content/en/hosting-and-deployment/hosting-on-github/index.md @@ -171,6 +171,19 @@ Under the deploy step, you will see a link to your live site. In the future, whenever you push a change from your local repository, GitHub will rebuild your site and deploy the changes. +## Customize the workflow + +The example workflow above includes this step, which typically takes 10‑15 seconds: + +```yaml +- name: Install Dart Sass + run: sudo snap install dart-sass +``` + +You may remove this step if your site, themes, and modules do not transpile Sass to CSS using the [Dart Sass] transpiler. + +[Dart Sass]: /hugo-pipes/transpile-sass-to-css/#dart-sass + ## Additional resources - [Learn more about GitHub Actions](https://docs.github.com/en/actions)