Deployments

Learn about deployments in Webflow Cloud

Deployments automatically build and publish your application to Webflow Cloud. Each deployment creates a new version of your app in the associated environment. Webflow Cloud automatically triggers deployments when you push changes to the branch linked to that environment.

Publishing your Webflow site won’t trigger a Webflow Cloud deployment. The deployment process for Webflow Cloud apps is decoupled from the Webflow site publishing process.

Learn more about environments →


See the below documentation for guidance on:


Continuous deployment

Webflow Cloud supports continuous integration and deployment (CI/CD) through GitHub. When you connect your GitHub repository, Webflow Cloud automatically:

  • Watches for changes in your connected branches
  • Triggers new deployments when changes are detected
  • Updates your environments with the latest code
Deploying using the Webflow CLI

You can also manually deploy your local environment using the Webflow CLI. In your terminal, run the following command to deploy your app to Webflow Cloud:

$webflow cloud deploy

Setting up continuous deployment with GitHub

  1. Navigate to Webflow Cloud and select your app
  2. Click “Log in to GitHub”
  3. Follow the instructions to connect your GitHub repository or multiple repositories
  4. Select a GitHub repository to connect your Webflow Cloud app to
  5. Create or select an environment to deploy to
  6. Choose the branch you want to deploy to the selected environment

If you have access to over 100 repositories, you may not see a list of your repositories to select from. In this case, paste the link to your repository into the GitHub repository field.

Manual deployments

There are two ways to manually deploy your environment:

  1. Deploy using the Webflow CLI
    Run the following command in your terminal:

    $webflow cloud deploy
  2. Deploy in the Webflow Cloud dashboard
    Navigate to your environments dashboard and click the “Deploy latest build” button.

Deployment process

Webflow Cloud serves your app through a streamlined deployment process:

  1. Clone your GitHub repository.
  2. Detect your framework and version from your package.json.
  3. Validate that the detected framework and version are supported.
  4. Install your dependencies, plus the framework adapter if your app doesn’t already declare one.
  5. Prepare configuration — generate any framework or platform-specific config required by the Webflow Cloud runtime.
  6. Build your app using the framework’s own build command.
  7. Collect your build output and deploy it to your environment.

Each step is logged and available for review in the build logs.

Deployment history

Deployment history

Each deployment appears in your environment’s deployment history. The history provides:

  • Deployment status (building, deploying, success, cancelled,failure)
  • Deployment date and time
  • Build and deployment duration
  • Build and runtime logs

In the event of a failed deployment, your environment continues running your last successful deployment, ensuring zero downtime.

Build logs

Build logs provide detailed information about how Webflow Cloud builds and deploys your app. To view build logs:

  1. In Webflow Cloud, click your app to open the Environments Dashboard.
  2. Click the environment name to open the Deployment Dashboard.
  3. Click the Deployment ID (Commit SHA) to view the build log for that deployment.

Build logs are particularly helpful for:

  • Debugging failed deployments
  • Optimizing build performance
  • Understanding dependency installation issues
  • Tracking build progress

Runtime logs

Runtime logs

Runtime logs show you what’s happening on your application’s server after deployment. These logs capture server-side activity, including:

  • Server-side function execution
  • Application errors and exceptions
  • Server-side console logs and debugging output

For example, if your application includes an API endpoint and a user makes a request to that endpoint, you’ll see the corresponding server-side activity in the runtime logs.

To view runtime logs:

  1. In Webflow Cloud, click your app name to open the Environments Dashboard.
  2. Click the environment name to open the Deployment Dashboard.
  3. Select the “Runtime Logs” tab.

Runtime logs are helpful for debugging server-side issues and monitoring your application’s API behavior in production.

Rolling back deployments

If you need to revert to a previous version of your app:

  1. Navigate to your GitHub repository
  2. Revert your working branch to the desired commit
  3. Push the changes to trigger a new deployment

Rolling back a deployment creates a new deployment with the previous code version. It doesn’t restore the exact state of the previous deployment.

Frequently asked questions

Build issues

Webflow Cloud detects your framework from the dependencies in your package.json. Make sure:

  • Your framework is listed as a dependency there, at a supported version
  • Your package.json is at the app path configured for your environment — if your app lives in a subdirectory of a monorepo, set that path in your environment settings

To skip detection and declare your framework explicitly, add a webflow.json at your app root:

webflow.json
1{
2 "cloud": {
3 "framework": "nextjs"
4 }
5}

Yes. Both secret and non-secret environment variables are available to your application’s build process, and they remain available to the deployed application at runtime. Secret values are value-redacted from build logs.

This is typically related to base path configuration. Check that assets referenced with plain <img>, <link>, or <script> tags include your environment’s base path. See when you need to prefix a path yourself.

The most recent successful build will continue running. Failed deployments never impact your live site.

Deployment issues

To rollback to a previous deployment:

  1. Revert your branch to the desired commit in GitHub
  2. Push the changes to trigger a new deployment with the previous version

Try refreshing your page - new deployments may not appear immediately in the dashboard.

No, only the most recent successful deployment for each environment can be previewed.

Preview access is limited to the most recent successful deployment for each environment.

The Webflow Cloud GitHub App may not have access to your repository. To check, go to the Webflow Cloud tab in your Webflow site settings and click “Install GitHub App.” Follow the prompts on GitHub to ensure Webflow has access to read from your repository. Once you grant access, try committing to the branch that Webflow Cloud should be monitoring for deployments in your app.

Publishing issues

No, the deployment process for Webflow Cloud apps does not automatically publish your Webflow site, and publishing your Webflow site does not trigger a Webflow Cloud deployment.