hugo action
Add example of pulling in a theme
hugo
명령을 실행하는 작업입니다.
이 예제는 마스터 브랜치에 푸시할 때 실행되며 hugo --theme=hyde-x
실행하여 사이트를 구축합니다.
workflow "Hugo build" {
resolves = [
"Hugo Action",
]
on = "push"
}
action "Hugo Action" {
uses = "srt32/hugo-action@master"
needs = "Filters for GitHub Actions"
args = "--theme=hyde-x"
}
action "Filters for GitHub Actions" {
uses = "actions/bin/filter@b2bea0749eed6beb495a8fa194c071847af60ea1"
args = "branch master"
}
테마를 구축하기 전에 동적으로 가져오고 싶으십니까? 이 작업을 이렇게 사용하세요
workflow "Hugo build" {
resolves = [
"Hugo Action",
]
on = "push"
}
action "Fetch git submodules" {
uses = "srt32/git-actions@master"
args = "cd themes && git clone https://github.com/zyro/hyde-x"
}
action "Hugo Action" {
uses = "srt32/hugo-action@master"
needs = ["Filters for GitHub Actions", "Fetch git submodules"]
args = "--theme=hyde-x"
}
action "Filters for GitHub Actions" {
uses = "actions/bin/filter@b2bea0749eed6beb495a8fa194c071847af60ea1"
args = "branch master"
}