From 9ad6aaa49d8fc899f3466337685380f66e7c2d57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Sun, 3 Mar 2019 13:52:21 +0000 Subject: [PATCH] chore(github): delete actions workflow Sticking with TravisCI for now --- .github/main.workflow | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/main.workflow diff --git a/.github/main.workflow b/.github/main.workflow deleted file mode 100644 index 7f3f67710..000000000 --- a/.github/main.workflow +++ /dev/null @@ -1,24 +0,0 @@ -workflow "Deploy demo app to Heroku" { - on = "push" - resolves = "release" -} - -action "login" { - uses = "actions/heroku@master" - args = "container:login" - secrets = ["HEROKU_API_KEY"] -} - -action "push" { - uses = "actions/heroku@master" - needs = "login" - args = "container:push -a karma-demo web" - secrets = ["HEROKU_API_KEY"] -} - -action "release" { - uses = "actions/heroku@master" - needs = "push" - args = "container:release -a karma-demo web" - secrets = ["HEROKU_API_KEY"] -}