9 lines
182 B
HCL
9 lines
182 B
HCL
workflow "Main workflow" {
|
|
on = "push"
|
|
resolves = ["docker-build"]
|
|
}
|
|
|
|
action "docker-build" {
|
|
uses = "actions/docker/cli@master"
|
|
args = "build -t peaceiris/actions-hugo ."
|
|
}
|