Skip to content

Commit

Permalink
fix: missed the porcelain options
Browse files Browse the repository at this point in the history
  • Loading branch information
JGAntunes committed Sep 29, 2023
1 parent 8fc5abc commit 1de3102
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions go/porcelain/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ type DeployOptions struct {
EdgeRedirectsDir string
BuildDir string
LargeMediaEnabled bool
AwaitReadySignal bool

IsDraft bool
SkipRetry bool
Expand Down Expand Up @@ -260,10 +261,11 @@ func (n *Netlify) DoDeploy(ctx context.Context, options *DeployOptions, deploy *
options.functionsConfig = functionsConfig

deployFiles := &models.DeployFiles{
Files: options.files.Sums,
Draft: options.IsDraft,
Async: n.overCommitted(options.files),
Framework: options.Framework,
Files: options.files.Sums,
Draft: options.IsDraft,
Async: n.overCommitted(options.files),
Framework: options.Framework,
AwaitReadySignal: options.AwaitReadySignal,
}
if options.functions != nil {
deployFiles.Functions = options.functions.Sums
Expand Down

0 comments on commit 1de3102

Please sign in to comment.