Use a specific Hugo version with GitHub Actions
Published:
, Updated:
Talks about:
<a class="post-tag post-tag-github" href="/tags/github">github</a>, <a class="post-tag post-tag-github-actions" href="/tags/github-actions">github actions</a>, and <a class="post-tag post-tag-hugo" href="/tags/hugo">hugo</a>
The actions-hugo action allows to use a specific Hugo version in your GitHub Action.
name: <PIPELINE>
jobs:
build:
runs-on: <RUN_ON>
steps:
- name: Setup hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: <HUGO_VERSION>
<PIPELINE>
: The name of your pipeline.<RUN_ON>
: The runner to use, see GitHub’s own documentation for possible values.<HUGO_VERSION>
: The released versions or uselatest
to always use the latest version of Hugo.