From bb93e4266a72d9cdcdc1bfea73e8341eb166a5b8 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Sun, 9 Nov 2025 10:56:21 +0100 Subject: [PATCH] fix: show domain with https (clickable) See https://git.coopcloud.tech/toolshed/abra/issues/643 --- cli/internal/deploy.go | 2 +- tests/integration/app_deploy_overview.bats | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/cli/internal/deploy.go b/cli/internal/deploy.go index 5d4706eaf..a4d5f4ac6 100644 --- a/cli/internal/deploy.go +++ b/cli/internal/deploy.go @@ -64,7 +64,7 @@ func DeployOverview( server = "local" } - domain := app.Domain + domain := fmt.Sprintf("https://%s", app.Domain) if domain == "" { domain = config.MISSING_DEFAULT } diff --git a/tests/integration/app_deploy_overview.bats b/tests/integration/app_deploy_overview.bats index 4a2f0fb58..519bb9ae9 100644 --- a/tests/integration/app_deploy_overview.bats +++ b/tests/integration/app_deploy_overview.bats @@ -68,6 +68,13 @@ teardown(){ assert_success } +@test "domain shown with https" { + run $ABRA app deploy "$TEST_APP_DOMAIN" \ + --no-input --no-converge-checks + assert_success + assert_output --partial "https://$TEST_DOMAIN" +} + # bats test_tags=slow @test "show changed config version on re-deploy" { run $ABRA app deploy "$TEST_APP_DOMAIN" \