diff --git a/.github/main.workflow b/.github/main.workflow new file mode 100644 index 0000000..c79ff61 --- /dev/null +++ b/.github/main.workflow @@ -0,0 +1,17 @@ +workflow "Jekyll build and deploy" { + resolves = [ + "Jekyll Action", + ] + on = "push" +} + +action "Jekyll Action" { + uses = "hasalex/jekyll-action@master" + needs = "Filters for Github Actions" + secrets = ["JEKYLL_PAT"] +} + +action "Filters for Github Actions" { + uses = "actions/bin/filter@master" + args = "branch develop" +}