actions-hugo/README.md
Shohei Ueda 03083c655e
Release v0.58.0 (#17)
* upgrade: Hugo to v0.58.0
* fix: push workflow
* remove: tag filter from push workflow
* upgrade: base image golang to 1.13.0

- https://gohugo.io/news/0.58.0-relnotes/
- https://discourse.gohugo.io/t/hugo-benchmarks-go-1-12-vs-go-1-13/20572
2019-09-05 01:43:34 +09:00

2.3 KiB
Raw Blame History

license release GitHub release date GitHub Actions status Docker Hub Build Status

GitHub Actions for Hugo extended

GitHub Actions for Hugo extended and Modules

Getting started

Create .github/workflows/push.yml

An example with GitHub Actions for deploying to GitHub Pages with Static Site Generators

peaceiris/actions-hugo latest version peaceiris/actions-gh-pages latest version

name: github pages

on:
  push:
    branches:
    - master

jobs:
  build-deploy:
    runs-on: ubuntu-18.04
    steps:
    - uses: actions/checkout@master
    - name: build
      uses: peaceiris/actions-hugo@v0.58.0
      if: github.event.deleted == false
      with:
        args: --gc --minify --cleanDestinationDir
    - name: deploy
      uses: peaceiris/actions-gh-pages@v1.1.0
      if: success()
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        PUBLISH_BRANCH: gh-pages
        PUBLISH_DIR: ./public

License

About the author