Report this

What is the reason for this report?

App Platform Website Not Updating with Deploy

Posted on May 5, 2021

Hi everyone!

I have a website that I built in Next JS and I’m hosting it on the App Platform with Strapi for the CMS.

When I make updates to the content in Strapi, I can see the changes take affect on my local instance of the website, but the live version won’t take the changes unless I redeploy the project by pushing code to my github repo.

Here are other deploy / build methods available that don’t seem to work:

  • The deploy button in the app platform dashboard.
  • Running ‘npm run build’ in the app platform console.
  • Manually triggering a deploy by submitting a POST request to the deployments API.

The client I built the website for is getting pretty annoyed about having to ask me to deploy content for them so any help or ideas would be greatly appreciated!



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

👋🏼 @jongauthier

Thanks for the details - the steps are helpful too! What’s happening is that when you make changes in Strapi and redeploy your app, App Platform does not know about those changes and sees that your source code and other app config is the same, so it skips the build to save time.

In this case you’ll want to force a rebuild so that the new content is retrieved from Strapi. This is something that we are working on adding to the control panel soon, but for now you can do it using doctl or the API directly.

  1. Install doctl
  2. List your apps and find your app’s UUID: doctl apps list. You can also find your app’s UUID in the control panel URL.
  3. Kick off a new deployment: doctl apps create-deployment --force-rebuild <app uuid>

Let me know if you run into any issues!

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.