From 460d7e3ef4991a9b22ed40711189f69a60643cd6 Mon Sep 17 00:00:00 2001 From: Alexis Hassler Date: Tue, 30 Apr 2019 18:08:49 +0200 Subject: [PATCH] CD/CI with Github Actions --- .github/main.workflow | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/main.workflow 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" +}