actions-hugo/README.md

1.7 KiB
Raw Blame History

license release GitHub release date

GitHub Actions for Hugo extended

GitHub Actions for Hugo extended

Getting started

Create main.workflow

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

workflow "GitHub Pages" {
  on = "push"
  resolves = ["deploy"]
}

action "is-branch-master" {
  uses = "actions/bin/filter@master"
  args = "branch master"
}

action "build" {
  needs = "is-branch-master"
  uses = "peaceiris/actions-hugo@v0.55.6"
  args = ["--gc", "--minify", "--cleanDestinationDir"]
}

action "deploy" {
  needs = "build"
  uses = "peaceiris/actions-gh-pages@v1.0.0"
  env = {
    PUBLISH_DIR = "./public"
    PUBLISH_BRANCH = "gh-pages"
  }
  secrets = ["ACTIONS_DEPLOY_KEY"]
}

License

MIT License - peaceiris/actions-hugo

About the author

peaceiris - Patreon