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 will not 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

Setting up continuous deployment with GitHub

  1. Navigate to Webflow Cloud and select your project
  2. Click “Connect GitHub”
  3. Follow the instructions to connect your GitHub repository or multiple repositories

Each environment links to a specific branch. When you push changes to that branch, Webflow Cloud automatically deploys those changes to the corresponding environment.

Deployment process

Webflow Cloud serves your app through a streamlined deployment process:

  1. Clones your GitHub repository
  2. Detects your app’s framework
  3. Installs dependencies
  4. Builds your application
  5. Deploys to your specified 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, 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 project name to open the Environments Dashboard
  2. Click the environment name to open the Deployment Dashboard
  3. Click the ellipsis ”…” next to a deployment
  4. Select “View deployment”
  5. Review the build log for each step of the process

Build logs are particularly helpful for:

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

Runtime logs

Runtime logs show you what’s happening on your application’s server side 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 project name to open the Environments Dashboard
  2. Click the environment name to open the Deployment Dashboard
  3. Click the ellipsis ”…” next to a deployment
  4. Select “View Deployment”
  5. Select the “Runtime Logs” tab underneath “Deployment Information”

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

Webflow Cloud currently supports Next.js and Astro projects. Make sure:

  • Your project is using one of these frameworks
  • You have included a configuration file (next.config.js or astro.config.mjs) with the necessary Webflow Cloud-specific configurations.

Environment variables are only available at runtime, not during the build process.

This is typically related to base path configuration. Check your asset paths and ensure they’re configured for your environment.

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

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.

  1. Create an empty commit using git commit --allow-empty -m "Trigger deployment"
  2. Push the commit to your remote repository using git push origin <branch-name>

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.

No, the deployment process for Webflow Cloud apps is separate from the Webflow site publishing process. Publishing your Webflow site will also not trigger a Webflow Cloud deployment.

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.

Built with