From 25a14696757491e3173160fff8fd1e9b0c503c61 Mon Sep 17 00:00:00 2001 From: Gabriel Date: Fri, 23 Aug 2019 10:32:16 -0300 Subject: Migrate github actions --- .github/main.workflow | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/main.workflow (limited to '.github/main.workflow') diff --git a/.github/main.workflow b/.github/main.workflow deleted file mode 100644 index 81c7f82..0000000 --- a/.github/main.workflow +++ /dev/null @@ -1,31 +0,0 @@ -workflow "Build" { - on = "push" - resolves = ["Deploy to pages"] -} - -action "Test" { - uses = "./.github/action" - args = "test" -} - -action "Coverage" { - uses = "./.github/action" - args = "cloverage --junit" - needs = ["Test"] -} - -action "Package" { - uses = "./.github/action" - args = "package" - needs = ["Coverage"] -} - -action "Deploy to pages" { - uses = "JamesIves/github-pages-deploy-action@master" - env = { - BRANCH = "gh-pages" - FOLDER = "public" - } - secrets = ["ACCESS_TOKEN"] - needs = ["Package"] -} -- cgit v1.2.3