Fix deploy by locking Hugo version via Pixi#43
Open
hugovk wants to merge 1 commit into
Open
Conversation
✅ Deploy Preview for pythoneditorialboard ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I noticed that Guido's name is correctly written with "van" at https://python.github.io/editorial-board/members/ but incorrectly with "Van" at https://python.github.io/editorial-board/members/guido-van-rossum/
This has been fixed, but still on prod because the GitHub Actions deploys are failing because it tries to install Hugo 0.128.0 but 0.146.0 is now required:
https://github.com/python/editorial-board/actions/runs/27371770982
The Netlify previews are okay, because it defines the version separately and was bumped to 0.160.1.
This PR uses Pixi for reproducible builds: it pins the dependency versions, and then uses Pixi to to build on both GitHub Actions and Netlify using the same versions. This can also be used locally to ensure the same versions.
This is similar to what I do at https://github.com/hugovk/hugovk.github.io.