diff options
Diffstat (limited to '.github/main.workflow')
-rw-r--r-- | .github/main.workflow | 31 |
1 files changed, 0 insertions, 31 deletions
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"] -} |