This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pipeline: | |
Type: AWS::CodePipeline::Pipeline | |
Properties: | |
RoleArn: !GetAtt CodePipelineRole.Arn | |
Stages: | |
- Name: Source | |
Actions: | |
- InputArtifacts: [] | |
Name: Source | |
ActionTypeId: | |
Category: Source | |
Owner: ThirdParty | |
Version: '1' | |
Provider: GitHub | |
OutputArtifacts: | |
- Name: SourceArtifacts | |
Configuration: | |
Owner: !Ref GitHubUser | |
Repo: !Ref GitHubRepo | |
Branch: !Ref GitHubBranch | |
OAuthToken: !Ref GitHubToken | |
RunOrder: 1 | |
- Name: Build | |
Actions: | |
- InputArtifacts: | |
- Name: SourceArtifacts | |
Name: GenerateDiagrams | |
ActionTypeId: | |
Category: Test | |
Owner: AWS | |
Version: '1' | |
Provider: CodeBuild | |
OutputArtifacts: [] | |
Configuration: | |
ProjectName: | |
Ref: CodeBuildCommands | |
RunOrder: 1 | |
ArtifactStore: | |
Type: S3 | |
Location: !Ref PipelineBucket |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment