From be8efd812040e3ba957d17f5de7d8aeeea69399d Mon Sep 17 00:00:00 2001 From: Marc Cataford Date: Thu, 9 May 2024 01:13:20 -0400 Subject: [PATCH] fix: clone via https --- Taskfile.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index e6be29f..81096dd 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -15,7 +15,7 @@ tasks: - test -f {{.CONFIG_ROOT}}/common.env cmds: - rm -rf {{.SERVICES_ROOT}}/{{.CLI_ARGS}} - - git clone "git@forge-ssh.karnov.club:spadinastan/{{.CLI_ARGS}}.git" "{{.SERVICES_ROOT}}/{{.CLI_ARGS}}" + - git clone "https://forge.karnov.club/spadinastan/{{.CLI_ARGS}}.git" "{{.SERVICES_ROOT}}/{{.CLI_ARGS}}" - cd {{ .SERVICES_ROOT }}/{{ .CLI_ARGS }} && . ./build.sh env: IMAGE_VERSION: "{{.IMAGE_VERSION}}" @@ -28,7 +28,7 @@ tasks: - test -f {{.CONFIG_ROOT}}/{{.CLI_ARGS}}.env cmds: - rm -rf {{.SERVICES_ROOT}}/{{.CLI_ARGS}} - - git clone "git@forge-ssh.karnov.club:spadinastan/{{.CLI_ARGS}}.git" "{{.SERVICES_ROOT}}/{{.CLI_ARGS}}" + - git clone "https://forge.karnov.club/spadinastan/{{.CLI_ARGS}}.git" "{{.SERVICES_ROOT}}/{{.CLI_ARGS}}" - cd {{ .SERVICES_ROOT }}/{{ .CLI_ARGS }} && . ./start.sh dotenv: ['common.env'] env: @@ -42,6 +42,6 @@ tasks: - test -f {{.CONFIG_ROOT}}/common.env cmds: - rm -rf {{.SERVICES_ROOT}}/{{.CLI_ARGS}} - - git clone "git@forge-ssh.karnov.club:spadinastan/{{.CLI_ARGS}}.git" "{{.SERVICES_ROOT}}/{{.CLI_ARGS}}" + - git clone "https://forge.karnov.club/spadinastan/{{.CLI_ARGS}}.git" "{{.SERVICES_ROOT}}/{{.CLI_ARGS}}" - cd {{ .SERVICES_ROOT }}/{{ .CLI_ARGS }} && . ./stop.sh dotenv: ['common.env']