From 00ec90fb03ad49f529bd6c6efd16e2c3e79b324b Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Sat, 11 Jul 2026 10:18:55 +0200 Subject: [PATCH] feat: add publish target to Makefile for Gitea registry --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e2f26a7..0333f8f 100644 --- a/Makefile +++ b/Makefile @@ -25,4 +25,8 @@ fix: cargo fmt 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