add: action

This commit is contained in:
peaceiris
2019-05-22 06:53:54 +09:00
parent 913ab499f6
commit 036c4a14e0
8 changed files with 158 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-gh-deploy ."
}