What happens after you click Save in the CMS, and how to check it — no coding needed.
What happens to your edit
When you save, your change is committed to the staging copy of the site. GitHub automatically checks that it still builds. Once a day at 05:30 UTC the checked content is published to the live site, www.blastodb.com. To publish sooner, see Publish now.
1. Check your edit built
A broken markdown element can stop the site from building. To check:
- Open the Actions page: github.com/Tsaousis-Lab/blastodb/actions.
- Find the most recent Build Check run (it runs after each CMS save).
- 🟢 green check = your change is fine. 🔴 red ✗ = something broke — fix it in the CMS, or undo it (see Rolling Back a Change).
2. Check the live site updated
- On the same Actions page, look for the latest Publish content and Build and Deploy Live Site runs.
- Wait for them to finish (🟡 → 🟢, usually one to three minutes).
- Open www.blastodb.com and hard-refresh — Ctrl+Shift+R (Windows) or Cmd+Shift+R (Mac) — to see the newest version.
3. Publish now
To push checked content live without waiting for the daily publish:
- Go to github.com/Tsaousis-Lab/blastodb/actions.
- In the left sidebar, click Publish content (staging → main).
- Click Run workflow → keep the branch as is → Run workflow.
- Watch the run finish (🟢), then check the live site as in step 2.
Nothing publishes if the build is broken — the publish step checks it first. So you can't take the live site down by saving a bad edit; it just won't go live until it's fixed.