Update main.workflow

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

View file

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