From b3c24935c08d29099e11576b32677226e122a7f5 Mon Sep 17 00:00:00 2001 From: bot-hermes Date: Sat, 5 Sep 2026 09:00:04 -0400 Subject: [PATCH] ci(deploy): use SSH URL for checkout clone The https://gitea@giteassh.buzzbee.dev:Vibing/... URL parsed the colon as a port. Use the SSH form gitea@giteassh.buzzbee.dev:Vibing/openchamber.git which the runner's deploy key authenticates. --- .gitea/workflows/deploy-custom.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy-custom.yml b/.gitea/workflows/deploy-custom.yml index 2cdee8e3..cf11c6ea 100644 --- a/.gitea/workflows/deploy-custom.yml +++ b/.gitea/workflows/deploy-custom.yml @@ -10,7 +10,7 @@ jobs: run: | rm -rf $GITHUB_WORKSPACE/repo mkdir -p $GITHUB_WORKSPACE/repo - git clone --depth 1 --branch custom https://gitea@giteassh.buzzbee.dev:Vibing/openchamber.git $GITHUB_WORKSPACE/repo + git clone --depth 1 --branch custom gitea@giteassh.buzzbee.dev:Vibing/openchamber.git $GITHUB_WORKSPACE/repo - name: Show revision run: git -C $GITHUB_WORKSPACE/repo rev-parse --short HEAD - name: Copy workspace to build dir