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