Просмотр исходного кода

fix empty secret name in GHA file

Alexander Belanger 5 лет назад
Родитель
Сommit
358e13d92a
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      internal/integrations/ci/actions/steps.go

+ 1 - 1
internal/integrations/ci/actions/steps.go

@@ -54,7 +54,7 @@ func getDockerBuildPushStep(envSecretName, dockerFilePath, repoURL string) Githu
 	return GithubActionYAMLStep{
 		Name: "Docker build, push",
 		ID:   "docker_build_push",
-		Run:  fmt.Sprintf(dockerBuildPush, envSecretName, filepath.Dir(dockerFilePath), dockerFilePath, repoURL, repoURL),
+		Run:  fmt.Sprintf(dockerBuildPush, envSecretName, envSecretName, filepath.Dir(dockerFilePath), dockerFilePath, repoURL, repoURL),
 	}
 }