Skip to content

fix release workflow#887

Merged
bckohan merged 1 commit into
django-commons:mainfrom
bckohan:fixrelease
May 1, 2026
Merged

fix release workflow#887
bckohan merged 1 commit into
django-commons:mainfrom
bckohan:fixrelease

Conversation

@bckohan
Copy link
Copy Markdown
Member

@bckohan bckohan commented May 1, 2026

No description provided.

Copilot AI review requested due to automatic review settings May 1, 2026 06:44
@bckohan bckohan merged commit 866c93f into django-commons:main May 1, 2026
6 checks passed
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Note

Copilot was unable to run its full agentic suite in this review.

Updates the GitHub Actions release workflow to ensure required system dependencies are available during the packaging step.

Changes:

  • Adds a workflow step to install gettext before building release artifacts.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

# 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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants