Update main.workflow

This commit is contained in:
Damian Mee 2019-08-09 17:50:20 +07:00 committed by GitHub
parent 9cf5449860
commit dc25cc374e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,9 +1,14 @@
workflow "build" {
resolves = ["GitHub Action for Docker"]
on = "check_run"
on = "push"
resolves = ["new-action"]
}
action "GitHub Action for Docker" {
uses = "actions/docker/cli@86ab5e854a74b50b7ed798a94d9b8ce175d8ba19"
runs = "docker build -t meedamian/bitcoind 0.17/"
}
action "new-action" {
uses = "owner/repo/path@ref"
needs = ["GitHub Action for Docker"]
}