# Workflows.DeployRelease

```go
func (workflowClient) DeployRelease(
    ctx context.Context,
    workflowSlug string,
    releaseID uuid.UUID,
    clusterSlugs []string,
) (*workflows.WorkflowReleaseDeployment, error)
```

Deploy a workflow release to one or more clusters.

## Parameters

**workflowSlug**

`string`

required: true

The workflow slug.

**releaseID**

`uuid.UUID`

required: true

The ID of the workflow release to deploy.

**clusterSlugs**

`[]string`

required: true

The clusters to deploy the release to.

## Returns

The deployment result, including the release and affected clusters.

```go title="Go"
deployment, err := client.Workflows.DeployRelease(ctx,
    workflow.Slug,
    release.ID,
    []string{"production"},
)
```
