Ver Fonte

Merge pull request #507 from porter-dev/master

Merge empty secret fix into staging
abelanger5 há 5 anos atrás
pai
commit
7c49af1e5b
1 ficheiros alterados com 1 adições e 1 exclusões
  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),
 	}
 }