Skip to content

Latest commit

 

History

History
27 lines (24 loc) · 514 Bytes

README.md

File metadata and controls

27 lines (24 loc) · 514 Bytes

dagger-vercel

A dagger extension for Vercel deployment

Supported Commands

  • subdir: String (ex: ".")
  • siteName: String (ex: "my-website")
  • token: SecretId
  • build: String (ex: "build/")
  • teamId: String (ex: "team_NHY3EF5Z6987pl2K1YiGtcg")

Example

query deploy(
  $tokenSecret: SecretID!
){
  vercelDeploy(
      subdir: "."
      siteName: $siteName
      token: $tokenSecret
      build: "out/"
      teamId: "team_NHY3EF5Z2434pl2K1YiGtcg"

  ) {
      deployURL
  }
}