1
1
mirror of https://github.com/primer/css.git synced 2025-01-05 21:22:57 +03:00

ci: add STATUS_CONTEXT env vars for deploy, publish

This commit is contained in:
Shawn Allen 2019-02-05 13:12:52 -08:00
parent 9b505b8843
commit 6ce25b0dc5

View File

@ -29,10 +29,16 @@ action "deploy" {
needs = "install"
uses = "primer/deploy@master"
secrets = ["NOW_TOKEN"]
env = {
STATUS_CONTEXT = "docs"
}
}
action "publish" {
needs = ["lint", "test"]
uses = "actions/npm@master"
runs = "script/publish"
env = {
STATUS_CONTEXT = "npm publish primer"
}
}