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.
|
workflow "New workflow" {
|
|
on = "push"
|
|
resolves = ["Deploy"]
|
|
}
|
|
|
|
action "Deploy" {
|
|
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
|
|
env = {
|
|
GIT_USER = "yangshun"
|
|
USE_SSH = "1"
|
|
}
|
|
runs = "cd website && yarn && yarn deploy"
|
|
}
|