Skip to content

Commit 92ee87b

Browse files
authored
content: Update CI/CD and version references
1 parent 170bf36 commit 92ee87b

File tree

20 files changed

+37
-34
lines changed

20 files changed

+37
-34
lines changed

‎.hvm‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v0.153.2

‎content/en/_common/installation/02-prerequisites.md‎

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Git is required to:
1212
- Use the [Hugo Modules] feature
1313
- Install a theme as a Git submodule
1414
- Access [commit information] from a local Git repository
15-
- Host your site with services such as [CloudCannon], [Cloudflare Pages], [GitHub Pages], [GitLab Pages], and [Netlify]
15+
- Host your site on [CI/CD](g) platforms such as [Cloudflare][], [GitHub Pages][], [GitLab Pages][], [Netlify][], [Render][], or [Vercel][]
1616

1717
Go is required to:
1818

@@ -27,16 +27,17 @@ Please refer to the relevant documentation for installation instructions:
2727
- [Go][go install]
2828
- [Dart Sass][dart sass install]
2929

30-
[cloudcannon]: https://cloudcannon.com/
31-
[cloudflare pages]: https://pages.cloudflare.com/
30+
[Cloudflare]: /host-and-deploy/host-on-cloudflare/
3231
[commit information]: /methods/page/GitInfo
3332
[dart sass install]: /functions/css/sass/#dart-sass
3433
[dart sass]: https://sass-lang.com/dart-sass
3534
[git install]: https://git-scm.com/book/en/v2/Getting-Started-Installing-Git
3635
[git]: https://git-scm.com/
37-
[github pages]: https://pages.github.com/
38-
[gitlab pages]: https://docs.gitlab.com/ee/user/project/pages/
36+
[GitHub Pages]: /host-and-deploy/host-on-github-pages/
37+
[GitLab Pages]: /host-and-deploy/host-on-gitlab-pages/
3938
[go install]: https://go.dev/doc/install
4039
[go]: https://go.dev/
4140
[hugo modules]: /hugo-modules/
42-
[netlify]: https://www.netlify.com/
41+
[Netlify]: /host-and-deploy/host-on-netlify/
42+
[Render]: /host-and-deploy/host-on-render/
43+
[Vercel]: /host-and-deploy/host-on-vercel/

‎content/en/configuration/all.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ versions
319319

320320
Hugo's file cache directory is configurable via the [`cacheDir`] configuration option or the `HUGO_CACHEDIR` environment variable. If neither is set, Hugo will use, in order of preference:
321321

322-
1. If running on Netlify: `/opt/build/cache/hugo_cache/`. This means that if you run your builds on Netlify, all caches configured with `:cacheDir` will be saved and restored on the next build. For other [CI/CD](g) vendors, please read their documentation. For an CircleCI example, see [this configuration].
322+
1. If running on Netlify: `/opt/build/cache/hugo_cache/`. This means that if you run your builds on Netlify, all caches configured with `:cacheDir` will be saved and restored on the next build. For other [CI/CD](g) platforms, please read their documentation. For a CircleCI example, see [this configuration].
323323
1. In a `hugo_cache` directory below the OS user cache directory as defined by Go's [os.UserCacheDir] function. On Unix systems, per the [XDG base directory specification], this is `$XDG_CACHE_HOME` if non-empty, else `$HOME/.cache`. On MacOS, this is `$HOME/Library/Caches`. On Windows, this is`%LocalAppData%`. On Plan 9, this is `$home/lib/cache`.
324324
1. In a `hugo_cache_$USER` directory below the OS temp dir.
325325

‎content/en/configuration/introduction.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ The above sets the [`baseURL`], [`enableGitInfo`], and [`environment`] configura
235235
> [!note]
236236
> An environment variable takes precedence over the values set in the configuration file. This means that if you set a configuration value with both an environment variable and in the configuration file, the value in the environment variable will be used.
237237
238-
Environment variables simplify configuration for [CI/CD](g) deployments like GitHub Pages, GitLab Pages, and Netlify by allowing you to set values directly within their respective configuration and workflow files.
238+
Environment variables simplify configuration for [CI/CD](g) platforms by allowing you to set values directly within their respective configuration and workflow files.
239239

240240
> [!note]
241241
> Environment variable names must be prefixed with `HUGO_`.

‎content/en/content-management/image-processing/index.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ Examples using the sunset image from above:
417417

418418
## Image processing performance consideration
419419

420-
Hugo caches processed images in the `resources` directory. If you include this directory in source control, Hugo will not have to regenerate the images in a [CI/CD](g) workflow (e.g., GitHub Pages, GitLab Pages, Netlify, etc.). This results in faster builds.
420+
Hugo caches processed images in the `resources` directory. If you include this directory in source control, Hugo will not have to regenerate the images on [CI/CD](g) platforms. This results in faster builds.
421421

422422
If you change image processing methods or options, or if you rename or remove images, the `resources` directory will contain unused images. To remove the unused images, perform garbage collection with:
423423

‎content/en/contribute/development.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@latest
143143
To build and install a specific release:
144144

145145
```sh
146-
CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@v0.153.1
146+
CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@v0.153.2
147147
```
148148

149149
To build and install at the latest commit on the master branch:

‎content/en/functions/css/Sass.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,14 +125,14 @@ Run `hugo env` to list the active transpilers.
125125
126126
### Installing in a production environment
127127

128-
To use Dart Sass with Hugo on a CI/CD platform like GitHub Pages, GitLab Pages, or Netlify, you typically must modify your build workflow to install Dart Sass before the Hugo site build begins. This is because these platforms don't have Dart Sass pre-installed, and Hugo needs it to process your Sass files.
128+
To use Dart Sass with Hugo on a [CI/CD](g) platform, you typically must modify your build workflow to install Dart Sass before the Hugo site build begins. This is because these platforms don't have Dart Sass pre-installed, and Hugo needs it to process your Sass files.
129129

130130
There's one key exception where you can skip this step: you have committed your `resources` directory to your repository. This is only possible if:
131131

132132
- You have not changed Hugo's default asset cache location.
133133
- You have not set [`useResourceCacheWhen`][] to never in your sites configuration.
134134

135-
By committing the `resources` directory, you're providing the pre-built CSS files directly to your CI/CD service, so it doesn't need to run the Sass compilation itself.
135+
By committing the `resources` directory, you're providing the pre-built CSS files directly to your CI/CD platform, so it doesn't need to run the Sass compilation itself.
136136

137137
For examples of how to install Dart Sass in a production environment, see these hosting guides:
138138

‎content/en/functions/hugo/Generator.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ params:
1111
---
1212

1313
```go-html-template
14-
{{ hugo.Generator }} → <meta name="generator" content="Hugo 0.153.1">
14+
{{ hugo.Generator }} → <meta name="generator" content="Hugo 0.153.2">
1515
```

‎content/en/functions/hugo/Version.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ params:
1111
---
1212

1313
```go-html-template
14-
{{ hugo.Version }} → 0.153.1
14+
{{ hugo.Version }} → 0.153.2
1515
```

‎content/en/functions/resources/FromString.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Let's say you need to publish a file named "site.json" in the root of your `publ
2323
```json
2424
{
2525
"build_date": "2025-07-08T13:12:19-07:00",
26-
"hugo_version": "0.153.1",
26+
"hugo_version": "0.153.2",
2727
"last_modified": "2025-07-07T22:09:13-07:00"
2828
}
2929
```

0 commit comments

Comments
 (0)