Skip to content
GitHub Action for interacting with Zeit Now
HCL Shell Dockerfile Ruby
Branch: master
Clone or download
This branch is 8 commits ahead of kitop:master.

Latest commit

Fetching latest commit…
Cannot retrieve the latest commit at this time.

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github
script
test
.dockerignore
Brewfile
Dockerfile
LICENSE
README.md
THIRD_PARTY_NOTICE.md
entrypoint.sh

README.md

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.

You can’t perform that action at this time.