mirror of
https://github.com/clockworkpi/wiki.clockworkpi.com.git
synced 2025-12-12 16:58:50 +01:00
18 lines
331 B
HCL
18 lines
331 B
HCL
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"
|
|
}
|