From 43b50c8d9db51546a17c64126ba35c61ca07a3d3 Mon Sep 17 00:00:00 2001 From: Roger Chappel Date: Wed, 29 Apr 2026 14:37:41 +1000 Subject: [PATCH] fix: publish GitHub scaffolds over SSH --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 00b4cf2..c31b019 100644 --- a/src/index.ts +++ b/src/index.ts @@ -417,7 +417,7 @@ function buildGithubPlan(projectRoot: string, variables: Record, '--description', variables.PROJECT_DESCRIPTION ]; - const remote = `https://github.com/${repository}.git`; + const remote = `git@github.com:${repository}.git`; const publishCommands = [ ['git', '-C', projectRoot, 'init', '-b', 'main'], ['git', '-C', projectRoot, 'add', '.'],