feat: include port as well
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-09-08 12:54:42 +02:00
parent a74225d9da
commit aeba0f00c6
Signed by: kjuulh
GPG Key ID: 9AA7BC13CE474394
2 changed files with 2 additions and 2 deletions

2
Cargo.lock generated
View File

@ -1571,7 +1571,7 @@ dependencies = [
[[package]] [[package]]
name = "flux-releaser" name = "flux-releaser"
version = "0.1.0" version = "0.1.0"
source = "git+https://git.front.kjuulh.io/kjuulh/flux-releaser?branch=main#1fb24abd3991a1d9888a93ee37fd11407d428a52" source = "git+https://git.front.kjuulh.io/kjuulh/flux-releaser?branch=main#522db2293b87d863341566fd02d60c079132eb40"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"async-trait", "async-trait",

View File

@ -40,7 +40,7 @@ async fn main() -> eyre::Result<()> {
service: cuddle_file.vars.service, service: cuddle_file.vars.service,
//registry: "http://127.0.0.1:7900".into(), //registry: "http://127.0.0.1:7900".into(),
//registry: "http://10.0.11.19:7900".into(), //registry: "http://10.0.11.19:7900".into(),
registry: "https://releaser.i.kjuulh.io".into(), registry: "https://releaser.i.kjuulh.io:443".into(),
}; };
let deployment = &CuddleReleaser::new(client.clone()).await?; let deployment = &CuddleReleaser::new(client.clone()).await?;