Skip to content

Instantly share code, notes, and snippets.

@zeke
Created November 6, 2018 17:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zeke/714fef657e68cba161d5906aa896541f to your computer and use it in GitHub Desktop.
Save zeke/714fef657e68cba161d5906aa896541f to your computer and use it in GitHub Desktop.
workflow "lint and deploy" {
on = "push"
resolves = [
"lint",
"deploy/alias",
]
}
action "install" {
uses = "actions/npm@94e6933"
args = "ci"
}
action "lint" {
needs = ["install"]
uses = "actions/npm@94e6933"
args = "run lint"
}
action "deploy" {
needs = ["install"]
uses = "shawnbot/zeit-now@9f28e66"
secrets = [
"ZEIT_TOKEN",
]
}
action "deploy/alias" {
needs = ["deploy"]
uses = "shawnbot/now-branch-preview@9f674f6"
secrets = ["ZEIT_TOKEN", "GITHUB_TOKEN"]
env = {
PREVIEW_URL_TEMPLATE = "primer-design-{branch}.now.sh"
STATUS_CONTEXT = "deploy/preview"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment