cp / zeit-now

GitHub Action for interacting with Zeit Now

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GitHub Action for Zeit

This Action wraps the Now CLI to enable common Now commands.

Usage

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.

Secrets

  • ZEIT_TOKEN - Required. The token to use for authentication with the Zeit Now API (more info)

License

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.

About

GitHub Action for interacting with Zeit Now

License:MIT License


Languages

Language:HCL 39.3%Language:Shell 36.7%Language:Dockerfile 22.9%Language:Ruby 1.2%