ant-design/.github/main.workflow
2019-08-17 15:16:44 +08:00

17 lines
298 B
HCL

workflow "Deploy website" {
on = "release"
resolves = ["Deploy"]
}
action "Deploy" {
uses = "JamesIves/github-pages-deploy-action@master"
secrets = [
"ACCESS_TOKEN",
]
env = {
BUILD_SCRIPT = "npm install && npm run predeploy"
BRANCH = "gh-pages"
FOLDER = "_site"
}
}