Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ jobs:

# export the release version
echo "RELEASE_VERSION=${RELEASE_VERSION}" >> $GITHUB_ENV
- name: Install gettext
run: sudo apt-get install -y gettext
Copy link

Copilot AI May 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

apt-get install without an apt-get update can intermittently fail on GitHub-hosted runners due to stale package indexes. Consider updating the package lists in the same step (or a preceding step) before installing, and optionally using --no-install-recommends to reduce install size/time.

Suggested change
run: sudo apt-get install -y gettext
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends gettext

Copilot uses AI. Check for mistakes.
- name: Build the binary wheel and a source tarball
run: just build
- name: Store the distribution packages
Expand Down