Update main.workflow

This commit is contained in:
Peter Evans 2019-06-25 20:18:14 +09:00 committed by GitHub
parent ff4c066a7a
commit 9e8150a63d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

15
.github/main.workflow vendored Normal file
View file

@ -0,0 +1,15 @@
workflow "Docker Hub Description Workflow" {
on = "push"
resolves = ["Docker Hub Description"]
}
action "Filter master branch" {
uses = "actions/bin/filter@v1.0.0"
args = "branch master"
}
action "Docker Hub Description" {
needs = ["Filter master branch"]
uses = "./"
secrets = ["DOCKERHUB_USERNAME", "DOCKERHUB_PASSWORD", "DOCKERHUB_REPOSITORY"]
}