You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
311 B
15 lines
311 B
5 years ago
|
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"]
|
||
|
}
|