Waymaker Host

Deployment History

Learn about Deployment History in WaymakerOS.

DeploymentsHistory

View the full history of every deployment for your app. Each push to your connected repository triggers a new deployment, and Host keeps a record of every one.

Viewing Deployments

  1. Open Host and select your app
  2. Go to the Deployments tab

Each deployment shows:

FieldDescription
StatusBuilding, success, or failed
CommitThe git commit that triggered the deployment
TimeWhen the deployment started

While a deployment is in progress, Host checks the status every 5 seconds and updates automatically.

Deployment Statuses

StatusMeaning
BuildingThe app is being built and deployed — spinner shown
QueuedWaiting for a build slot
SuccessDeployed and live
FailedBuild or deployment error — check your build settings

Triggering a Deployment

Deployments are triggered by pushing to your connected GitHub repository. Every push to the configured branch starts a new build.

git push origin main

There is no manual "deploy" button — deployments are always tied to a git commit.

When a Deployment Fails

  1. Check the deployment status in the Deployments tab
  2. Review your build settings in the Settings tab:
    • Is the branch correct?
    • Is the build command correct? (e.g., npm run build)
    • Is the output directory correct? (e.g., dist, .next, build)
  3. Check your GitHub repository for build errors
  4. Fix the issue and push again — a new deployment will start automatically

Deploying a Previous Version

To go back to a previous version, revert your code in Git and push:

git revert HEAD
git push origin main

This creates a new deployment with the reverted code, keeping your full deployment history intact.

Next Steps