Skip to content

Commit

Permalink
chore: Reorder CI pipeline steps
Browse files Browse the repository at this point in the history
  • Loading branch information
mkleszcz committed Feb 16, 2024
1 parent 22a5794 commit c4e1497
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/infra/infra-shared/src/stacks/ci/ciPipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@ export class CiPipeline extends Construct {
inputArtifact: sourceOutputArtifact,
});

new DocsCiConfig(this, 'DocsConfig', {
new ServerlessCiConfig(this, 'WorkersConfig', {
envSettings: props.envSettings,
buildStage,
deployStage,
inputArtifact: sourceOutputArtifact,
});

new ServerlessCiConfig(this, 'WorkersConfig', {
new DocsCiConfig(this, 'DocsConfig', {
envSettings: props.envSettings,
buildStage,
deployStage,
Expand Down

0 comments on commit c4e1497

Please sign in to comment.