We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b45b0e9 commit 8aaa480Copy full SHA for 8aaa480
LambdaRuntimeDockerfiles/Infrastructure/src/Infrastructure/PipelinesStage.cs
@@ -39,9 +39,7 @@ private void CreatePipelinesForRepository(
39
for (var i = 0; i < configuration.Frameworks.Length; i++)
40
{
41
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"
+ var pipelineName = $"{pipelinePrefix}-{configuration.Frameworks[i].Framework}";
45
46
new PipelineStack(this,
47
$"{pipelinePrefix}-{configuration.Frameworks[i].Framework}",
0 commit comments