feat: add publish target to Makefile for Gitea registry
All checks were successful
CI / fmt (push) Successful in 27s
CI / clippy (push) Successful in 4m16s
CI / test (push) Successful in 5m23s

This commit is contained in:
2026-07-11 10:18:55 +02:00
parent 997047fdbd
commit 00ec90fb03

View File

@@ -25,4 +25,8 @@ fix:
cargo fmt cargo fmt
cargo clippy --fix --allow-dirty --allow-staged cargo clippy --fix --allow-dirty --allow-staged
.PHONY: check fmt fmt-check clippy test fix # Publish to the gitea registry.
publish: check
cargo publish --registry gitea
.PHONY: check fmt fmt-check clippy test fix publish