How to pause or stop live updates on a particular channel?

I had deployed some live updates, but I cannot see an option to pause or stop the deployment. Is it even possible? I wanted to test this just to make sure I can stop the updates in case I mess something during deployment. Sure I can deploy a new update with the changes reverted, but that’ll end up eating my live update quota
The only solution I have found so far is to delete the channel. But it’ll delete all the deployments as well and I dont want to lose track of my deployment history.
Please let me know if I’m missing something here

1 Like

If necessary, disable updates with:

// capacitor.config.ts

cordova: {
  preferences: {
    DisableDeploy: "true"
  }
}

You also can restrict the live update to a specific version.