CD/CI with Github Actions

This commit is contained in:
Alexis Hassler 2019-04-30 18:08:49 +02:00
parent 651a25bf39
commit 460d7e3ef4

17
.github/main.workflow vendored Normal file
View File

@ -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"
}