Skip to content

Commit

Permalink
spelling error
Browse files Browse the repository at this point in the history
Signed-off-by: Francis <[email protected]>
  • Loading branch information
colifran committed Oct 10, 2023
1 parent 9b54257 commit 5ee19b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import * as signing from './signing';
import { determineRunOrder, flatMap } from './util';

const PUBLISH_STAGE_NAME = 'Publish';
const SIGINING_STAGE_NAME = 'Sign';
const SIGNING_STAGE_NAME = 'Sign';
const TEST_STAGE_NAME = 'Test';
const METRIC_NAMESPACE = 'CDK/Delivlib';
const FAILURE_METRIC_NAME = 'Failures';
Expand Down Expand Up @@ -370,7 +370,7 @@ export class Pipeline extends Construct {
}

public addSigning(signer: signing.ISigner, options: signing.AddSigningOptions = {}) {
const signingStageName = options.stageName ?? SIGINING_STAGE_NAME;
const signingStageName = options.stageName ?? SIGNING_STAGE_NAME;
const stage = this.getOrCreateStage(signingStageName);

this._signingOutput = signer.addToPipeline(stage, `${signer.node.id}Sign`, {
Expand Down

0 comments on commit 5ee19b0

Please sign in to comment.