3.8 KiB

title description categories keywords aliases
Host on Netlify Host your site on Netlify.
/hosting-and-deployment/hosting-on-netlify/

Use these instructions to enable continuous deployment from a GitHub repository. The same general steps apply if you are using Azure DevOps, Bitbucket, or GitLab for version control.

Prerequisites

Please complete the following tasks before continuing:

  1. Create a Netlify account
  2. Log in to your Netlify account
  3. Create a GitHub account
  4. Log in to your GitHub account
  5. Create a GitHub repository for your project
  6. Create a local Git repository for your project with a remote reference to your GitHub repository
  7. Create a Hugo site within your local Git repository and test it with the hugo server command
  8. Commit the changes to your local Git repository and push to your GitHub repository.

Procedure

Step 1
Create a netlify.toml file in the root of your project.
[build.environment]
DART_SASS_VERSION = "1.92.1"
GO_VERSION = "1.25.1"
HUGO_VERSION = "0.150.0"
NODE_VERSION = "22.18.0"
TZ = "Europe/Oslo"

[build]
publish = "public"
command = """\
  git config core.quotepath false && \
  hugo --gc --minify --baseURL "${URL}"
  """

If your site requires Dart Sass to transpile Sass to CSS, set the DART_SASS_VERSION and include the Dart Sass installation in the build step.

[build.environment]
DART_SASS_VERSION = "1.92.1"
GO_VERSION = "1.25.1"
HUGO_VERSION = "0.150.0"
NODE_VERSION = "22.18.0"
TZ = "Europe/Oslo"

[build]
publish = "public"
command = """\
  curl -sLJO "https://github.com/sass/dart-sass/releases/download/${DART_SASS_VERSION}/dart-sass-${DART_SASS_VERSION}-linux-x64.tar.gz" && \
  tar -C "${HOME}/.local" -xf "dart-sass-${DART_SASS_VERSION}-linux-x64.tar.gz" && \
  rm "dart-sass-${DART_SASS_VERSION}-linux-x64.tar.gz" && \
  export PATH="${HOME}/.local/dart-sass:${PATH}" && \
  git config core.quotepath false && \
  hugo --gc --minify --baseURL "${URL}"
  """
Step 2
Commit the changes to your local Git repository and push to your GitHub repository.
Step 3
In the upper right corner of the Netlify dashboard, press the Add new project button and select “Import an existing project".

screen capture

Step 4
Connect to GitHub.

screen capture

Step 5
Press the "Authorize Netlify" button to allow the Netlify application to access your GitHub account.

screen capture

Step 6
Press the Configure Netlify on GitHub button.

screen capture

Step 7
Select the GitHub account where you want to install the Netlify application.

screen capture

Step 8
Authorize the Netlify application to access all repositories or only select repositories, then press the Install button.

screen capture

Your browser will be redirected to the Netlify dashboard.

Step 9
Click on the name of the repository you wish to import.

screen capture

Step 10
On the "Review configuration" page, enter a project name, leave the settings at their default values, then press the Deploy button.

screen capture

screen capture

Step 11
When the deployment completes, click on the link to your published site.

screen capture

In the future, whenever you push a change from your local Git repository, Netlify will rebuild and deploy your site.