diff --git a/.github/main.workflow b/.github/main.workflow index ed15c07e..7d26c021 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -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", - ] -}