Fix /awards/ redirect by disabling section list rendering #133
Merged
Conversation
The dart-sass-embedded snap is deprecated and snap store outages
were causing transient failures ("unable to contact snap store").
Pulling the prebuilt binary from the sass/dart-sass GitHub release
is what Hugo's official docs now recommend.
|
Preview deployed at: https://www2.sigsoft.org/pr-133 |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR aims to make /awards/ resolve to the SIGSOFT Awards overview page instead of rendering the awards section list, while also updating the GitHub Pages workflows to install Dart Sass without Snap.
Changes:
- Adds
/awards/as an alias forcontent/awards/sigsoftAwards.md. - Introduces
content/awards/_index.mdwith section rendering/listing disabled. - Replaces
snap install dart-sass-embeddedwith a manual Dart Sass download in both deploy workflows.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
content/awards/sigsoftAwards.md |
Adds the /awards/ alias to the awards overview page. |
content/awards/_index.md |
Disables rendering/list generation for the awards section. |
.github/workflows/production-deploy.yml |
Changes production build setup to install Dart Sass from a downloaded tarball. |
.github/workflows/pr-preview.yml |
Changes PR preview build setup to install Dart Sass from a downloaded tarball. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+43
to
+45
| wget -O /tmp/dart-sass.tar.gz \ | ||
| "https://github.com/sass/dart-sass/releases/download/${DART_SASS_VERSION}/dart-sass-${DART_SASS_VERSION}-linux-x64.tar.gz" | ||
| tar -xf /tmp/dart-sass.tar.gz -C /tmp |
Comment on lines
+43
to
+44
| wget -O /tmp/dart-sass.tar.gz \ | ||
| "https://github.com/sass/dart-sass/releases/download/${DART_SASS_VERSION}/dart-sass-${DART_SASS_VERSION}-linux-x64.tar.gz" |
CaptainEmerson
approved these changes
May 5, 2026
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.
/awards/ redirect by disabling section list rendering