Skip to content

Commit 6a8eeab

Browse files
committed
fix: add --allow-dirty to release target for Cargo.toml swap
1 parent 0b8a049 commit 6a8eeab

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,7 @@ release-check: release-prep ## Verify package can be published (dry-run)
248248
release: release-prep ## Publish to crates.io (requires cargo login, trueno must be published first)
249249
@echo "🚀 Publishing trueno-db to crates.io..."
250250
@echo "⚠️ Ensure trueno $(TRUENO_VERSION) is already published!"
251-
@echo "⚠️ Ensure all changes are committed!"
252-
cargo publish || ($(MAKE) release-dev && exit 1)
251+
cargo publish --allow-dirty || ($(MAKE) release-dev && exit 1)
253252
@$(MAKE) release-dev
254253
@echo "✅ Published successfully"
255254
@echo "📦 Create GitHub release: gh release create v$$(cargo pkgid | cut -d# -f2)"

0 commit comments

Comments
 (0)