actions-hugo/.github/main.workflow

10 lines
182 B
Plaintext
Raw Normal View History

2019-05-21 20:57:34 +00:00
workflow "Main workflow" {
on = "push"
resolves = ["docker-build"]
}
action "docker-build" {
uses = "actions/docker/cli@master"
args = "build -t peaceiris/actions-hugo ."
}