resume.yml in your own repo, push, and let CI
rebuild and deploy to GitHub Pages on every change.
1. Drop in the workflow
Create.github/workflows/resume.yml:
2. Enable Pages
Repo → Settings → Pages → Source: GitHub Actions.3. Push
https://<username>.github.io/<repo>/.
Tips
- Custom domain. Drop a
CNAMEfile into the same repo’s root and set the domain in Settings → Pages. - Multiple themes. Build several formats in one run:
- PR previews. Add a second job that builds on
pull_requestand uploads the artifact for download — reviewers see exactly how the resume changes. - Pin the version.
go install …@latestalways fetches the newest. Replace with@v0.x.yto reproduce builds.