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
5 changes: 0 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,6 @@ jobs:
git push origin "${TAG}"
echo "Pushed tag ${TAG} to origin"

Copy link

Copilot AI Nov 9, 2025

Choose a reason for hiding this comment

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

Removing the dry-run validation step before publishing to Hex eliminates a safety check that could catch package configuration issues or validation errors before attempting actual publication. Consider keeping the dry-run step to prevent failed publishes and ensure package integrity.

Suggested change
- name: Dry-run publish to Hex
run: |
echo "Validating package with dry-run publish..."
gleam publish --dry-run

Copilot uses AI. Check for mistakes.
- name: Validate package (dry-run)
run: |
echo "Validating package before publishing..."
gleam publish --dry-run

- name: Publish to Hex
env:
HEXPM_API_KEY: ${{ secrets.HEX_API_KEY }}
Expand Down