Skip to content

Commit 8aaa480

Browse files
committed
update naming convetion
1 parent b45b0e9 commit 8aaa480

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

LambdaRuntimeDockerfiles/Infrastructure/src/Infrastructure/PipelinesStage.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,7 @@ private void CreatePipelinesForRepository(
3939
for (var i = 0; i < configuration.Frameworks.Length; i++)
4040
{
4141

42-
var pipelineName = string.IsNullOrEmpty(pipelinePrefix)
43-
? $"{configuration.ProjectName}-{configuration.Frameworks[i].Framework}" // "aws-lambda-container-images-net8"
44-
: $"{configuration.ProjectName}-{pipelinePrefix}-{configuration.Frameworks[i].Framework}"; // "aws-lambda-container-images-staging-net8"
42+
var pipelineName = $"{pipelinePrefix}-{configuration.Frameworks[i].Framework}";
4543

4644
new PipelineStack(this,
4745
$"{pipelinePrefix}-{configuration.Frameworks[i].Framework}",

0 commit comments

Comments
 (0)