GitHub Action for Hugo, the world's fastest framework for building websites.
name: hugo
on:
push:
pull_request:
jobs:
hugo:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Run Hugo
uses: crazy-max/ghaction-hugo@v3
with:
version: latest
extended: false
args: --cleanDestinationDir --minify --verbose
-
name: Deploy to GitHub Pages
if: github.event_name != 'pull_request'
uses: crazy-max/ghaction-github-pages@v4
with:
target_branch: gh-pages
build_dir: public
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
The following inputs can be used as step.with
keys
Name | Type | Default | Description |
---|---|---|---|
version |
String | latest |
Hugo version. Example: v0.58.3 |
extended |
Bool | false |
Use Hugo extended |
args |
String | Arguments to pass to Hugo |
Want to contribute? Awesome! The most basic way to show your support is to star the project, or to raise issues. You can also support this project by becoming a sponsor on GitHub or by making a PayPal donation to ensure this journey continues indefinitely!
Thanks again for your support, it is much appreciated! 🙏
MIT. See LICENSE
for more details.