From 3e0424897dbe9ccc21f94ae7286016a112a52ab5 Mon Sep 17 00:00:00 2001 From: Duncan McGreggor Date: Sat, 11 Jan 2025 12:02:34 -0600 Subject: [PATCH] Deps don't publish to hex correctly with maintainer profile. --- priv/make/code.mk | 3 +++ rebar.config | 6 ++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/priv/make/code.mk b/priv/make/code.mk index 8641658..a912965 100644 --- a/priv/make/code.mk +++ b/priv/make/code.mk @@ -27,3 +27,6 @@ push-tags: git push gitlab --tags push-all: push push-tags + +publish: + rebar3 publish diff --git a/rebar.config b/rebar.config index 3c6908c..98fa614 100644 --- a/rebar.config +++ b/rebar.config @@ -7,7 +7,8 @@ {project_plugins, [ {rebar3_lfe, "~> 0.4"}, - {rebar3_oscmd, "~> 0.5"} + {rebar3_oscmd, "~> 0.5"}, + rebar3_hex ]}. {provider_hooks, [ @@ -27,9 +28,6 @@ {test, [ {eunit_opts, [verbose]}, {erl_opts, [{src_dirs, ["src", "test"]}]} - ]}, - {maintainer, [ - {plugins, [rebar3_hex]} ]} ]}.