add: action

This commit is contained in:
peaceiris
2019-05-22 05:57:34 +09:00
parent bb881b84c6
commit 292438bb12
6 changed files with 114 additions and 3 deletions

9
.github/main.workflow vendored Normal file
View File

@@ -0,0 +1,9 @@
workflow "Main workflow" {
on = "push"
resolves = ["docker-build"]
}
action "docker-build" {
uses = "actions/docker/cli@master"
args = "build -t peaceiris/actions-hugo ."
}