Automate your Hugo CV deployment with GitHub Actions
The article discusses how to automate the deployment of a Hugo-based CV site using GitHub Actions. It outlines the steps to set up a clean deployment pipeline, allowing users to push changes without manual builds. The author provides insights into managing themes and assets effectively within the Hugo framework.
- ▪The article explains how to automate the build and deployment of a Hugo-based CV site hosted on GitHub Pages.
- ▪A GitHub Actions workflow is created to trigger builds and updates automatically when changes are pushed to the source branch.
- ▪The author highlights the importance of using the extended version of Hugo to process SCSS and customize themes effectively.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 473359) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Ulrich VACHON Posted on May 17 Automate your Hugo CV deployment with GitHub Actions #hugo #github #resume #career In this article we will see how to automate the build and deployment of a Hugo-based CV site hosted on GitHub Pages. No more running Hugo by hand, just git push and you're done.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).