1
1
mirror of https://github.com/primer/css.git synced 2025-01-02 11:12:27 +03:00

nix deploy action

This commit is contained in:
Shawn Allen 2019-05-22 12:48:44 -07:00
parent f6dccec048
commit 02dc989a5c

18
.github/main.workflow vendored
View File

@ -1,11 +1,6 @@
workflow "lint, test, deploy, publish" {
workflow "lint, test, publish" {
on = "push"
resolves = [
"lint",
"test",
"publish",
"deploy",
]
resolves = ["lint", "test", "publish"]
}
action "install" {
@ -31,12 +26,3 @@ action "publish" {
args = ["--", "--unsafe-perm"]
secrets = ["GITHUB_TOKEN", "NPM_AUTH_TOKEN"]
}
action "deploy" {
needs = "install"
uses = "primer/deploy@v3.0.0"
secrets = [
"GITHUB_TOKEN",
"NOW_TOKEN",
]
}