Skip to content

Commit 215ade4

Browse files
blaltermanclaude
andcommitted
fix(ci): remove --dry-run from lockfile validation
- pip-compile --dry-run doesn't create output file - Causes diff command to fail with "No such file or directory" - Removing --dry-run allows proper lockfile comparison 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 5bb92e9 commit 215ade4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
- name: Verify lockfiles synced before release
6363
run: |
6464
pip install pip-tools
65-
pip-compile pyproject.toml --output-file=/tmp/req-check.txt --dry-run --quiet
65+
pip-compile pyproject.toml --output-file=/tmp/req-check.txt --quiet
6666
if ! diff -q requirements.txt /tmp/req-check.txt; then
6767
echo "❌ CRITICAL: requirements.txt out of sync with pyproject.toml"
6868
echo "Run: pip-compile pyproject.toml --output-file=requirements.txt"

0 commit comments

Comments
 (0)