This Action wraps the Now CLI to enable common Now commands.
workflow "Deploy on Now" {
on = "push"
resolves = ["alias"]
}
action "deploy" {
uses = "actions/zeit-now@master"
secrets = [
"ZEIT_TOKEN",
]
}
action "alias" {
needs = ["deploy"]
uses = "actions/zeit-now@master"
args = "alias"
secrets = [
"ZEIT_TOKEN",
]
}
For more examples, visit: actions/example-zeit-now.
ZEIT_TOKEN
- Required. The token to use for authentication with the ZEIT Now API (more info)
The Dockerfile and associated scripts and documentation in this project are released under the MIT License.
Container images built with this project include third party materials. See THIRD_PARTY_NOTICE.md for details.