feat: actually set registry
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2024-05-25 23:11:41 +02:00
parent c76601a695
commit d9ce9748b4
Signed by: kjuulh
GPG Key ID: 9AA7BC13CE474394

View File

@ -19,7 +19,7 @@ pub struct Releaser {
impl Releaser { impl Releaser {
pub fn with_registry(&mut self, registry: impl Into<String>) -> &mut Self { pub fn with_registry(&mut self, registry: impl Into<String>) -> &mut Self {
self.service = registry.into(); self.registry = registry.into();
self self
} }