From dc25cc374ed22ba17d85b938c50e3eab8d850a7c Mon Sep 17 00:00:00 2001 From: Damian Mee Date: Fri, 9 Aug 2019 17:50:20 +0700 Subject: [PATCH] Update main.workflow --- .github/main.workflow | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/main.workflow b/.github/main.workflow index 562446c..572bddb 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -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"] +}