aboutsummaryrefslogtreecommitdiff
path: root/.github/main.workflow
diff options
context:
space:
mode:
authorGabriel <desouza@oculavis.de>2019-08-23 10:32:16 -0300
committerGabriel <desouza@oculavis.de>2019-08-23 10:32:16 -0300
commit25a14696757491e3173160fff8fd1e9b0c503c61 (patch)
treeed5443f75e41b3a452da9f5b7779e82d263fc697 /.github/main.workflow
parentdc5fe1f70e4e6c0dbdbd551aa7e72df46e7e51d7 (diff)
downloadgenpass-25a14696757491e3173160fff8fd1e9b0c503c61.tar.gz
genpass-25a14696757491e3173160fff8fd1e9b0c503c61.tar.bz2
genpass-25a14696757491e3173160fff8fd1e9b0c503c61.zip
Migrate github actions
Diffstat (limited to '.github/main.workflow')
-rw-r--r--.github/main.workflow31
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"]
-}