You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/cloud/academy/creating-your-learning-path/index.md
+33Lines changed: 33 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -279,6 +279,39 @@ This action will automatically trigger the workflow, and your content will be de
279
279
280
280

281
281
282
+
## 6. Ongoing Maintenance and Updates
283
+
284
+
Once your learning path is live, you may need to perform routine tasks to keep your local environment and dependencies up-to-date.
285
+
286
+
### Updating the Academy Theme
287
+
The [`academy-theme`](https://github.com/layer5io/academy-theme) provides the core layout, style, and features for your learning path. Regularly updating it ensures you benefit from the latest improvements and bug fixes.
288
+
289
+
To upgrade to the latest theme version, run:
290
+
```bash
291
+
make theme-upgrade
292
+
```
293
+
294
+
You will see output similar to this as Hugo fetches the new modules:
It's a good practice to update the theme before creating a new release or when you notice that your local preview is missing recent design changes.
305
+
{{< /alert >}}
306
+
307
+
### Clearing the LocalCacheforTroubleshooting
308
+
309
+
If you encounter unexpected formatting issues or your content doesn't update correctly during local development, your build cache might be stale. Use the `make clean` command to resolve this.
310
+
This command first deletes the local build cache (`public` directory) and then restarts the development server, ensuring you are previewing a fresh build of your content.
311
+
```bash
312
+
make clean
313
+
```
314
+
282
315
## Frequently Asked Questions
283
316
284
317
1. **Why is my workflow failing with a `401 Unauthorized` or `user must be logged in` error?**
0 commit comments