Skip to content

lowply/build-hugo

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Hugo

A GitHub Action for building Hugo sites.

Usage

Example Workflow

name: Build Hugo
on: [push]
jobs:
  build:
    name: Build
    runs-on: ubuntu-latest
    steps:
    - name: Check out code
      uses: actions/checkout@v2
    - name: Build Hugo
      uses: lowply/build-hugo@v0.135.0

Versioning

The Build Hugo version aligns with Hugo's releases. If you need a specific Hugo version to build your website, you can specify it like this:

    - name: Build Hugo
      uses: lowply/build-hugo@v0.68.3

Running Locally

To run it locally, use the following command:

docker run --rm -w /tmp -v $(pwd):/tmp lowply/build-hugo:v0.135.0

Development

Keeping Up with the Latest Hugo Version

To create a PR for the latest version, run:

./script/update.sh

After reviewing and ensuring the PR passes all tests, merge it, and then execute:

./script/release.sh