mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 04:58:55 +08:00
15 lines
311 B
Plaintext
15 lines
311 B
Plaintext
|
workflow "Deploy website" {
|
||
|
on = "release"
|
||
|
resolves = ["Deploy"]
|
||
|
}
|
||
|
|
||
|
action "Deploy" {
|
||
|
uses = "docker://node:10"
|
||
|
runs = [
|
||
|
"sh",
|
||
|
"-c",
|
||
|
"git remote set-url origin https://${DEPLOY_TOKEN}@github.com/ant-design/ant-design.git && npm install && npm run deploy"
|
||
|
],
|
||
|
secrets = ["DEPLOY_TOKEN"]
|
||
|
}
|