I have some GitHub repositories with my project source codes and I build them through CDK Pipelines on AWS. I basically grab the source code, build the docker images and push them to the ECR. I was wondering if I could tag the versions on the code on GitHub through any step or code on the Pipeline, so I can keep track of the builds on the code. I tried looking it up but didn't find anything so I thought maybe I would have more luck here if anyone has done that.
Can I tag my code on Github when building it through a CDK Pipeline on AWS?
317 Views Asked by Paulo Neves At
1
There are 1 best solutions below
Related Questions in AMAZON-WEB-SERVICES
- "Access Denied" - User's Permissions to S3 Bucket
- Cohort analysis with Amazon Redshift / PostgreSQL
- Using Amazon KMS service on Heroku
- can't ssh in after cloning an EC2 instance on Amazon AWS
- Using HDFS with Apache Spark on Amazon EC2
- How can I access Mule ESB Community edition via browser?
- AWS EC2: Migrating from Windows to Linux Server
- AWS ELB Load Balancer: is it possible to set multiple session cookies?
- AWS Flow Framework: Can we run activity worker and activity task on different EC2 instances
- Unable to access files from public s3 bucket with boto
- Cloudfront stream only part of the video
- s3cmd not working as cron-task when echos/dates are added
- How to deploy django 1.8 on Elastic Beanstalk using Docker
- InstanceProfile is required for creating cluster - create python function to install module
- How to fix WordPress HTTPS issues when behind an Amazon Load Balancer?
Related Questions in GITHUB
- How do I create my own Git branch to work on?
- Tools for Apache Cordova - Installed Plugins are skipped in build
- Permission denied hg-git
- git hard reset - what am I doing wrong?
- Merge Pull Request Manually
- rebasing interactively, but only one commit shows up?
- Error when adding a new build stage on Bluemix DevOps Services
- What should I do if I put MS Office (e.g. .docx) or OpenOffice( e.g. .odt) document into a git repository?
- How to trigger git hooks without pushing to the repo
- How to push a Git server repository issues to Github repository?
- How to backup an AOSP project on GitHub
- How to reference comments in github.com?
- Aptana, github & remote (sftp) files
- Opening PDF in a browser with Github Pages
- I need git to include the parent directory
Related Questions in TAGS
- How to make a multi model tag_cloud with a join table?
- Inserting template code below code in Handlebars layout.hbs
- Is it possible to access gmail anonymous profile for a logged in user?
- Youtube Google API V3: List Videos not returning video tags
- Winforms control for displaying html text
- git-svn problems creating tags
- Having an archive page with categories and tags
- How to keep comma between tags in _form?
- PHP Comment Tag
- custom WordPress tag.php page .. trying to get tag info
- Pushwoosh: how does it work
- Styling Two Navigation Bars
- git tag -l does not remove deleted tags
- unexpected end of file in html code
- <H2> followed by <Sup>
Related Questions in AWS-CDK
- What is the difference between a CDK construct and a regular class?
- Create Network Load Balancer (NLB) using existing EC2 instances with AWS-CDK
- CDK elbv2.ApplicationLoadBalancer.add_security_group doesn't work
- Understanding AWS-Config Rules and Confuguration Changes
- How to make k8s Pod (generated by Jenkins) use Service account IAM role to access AWS resources
- How to reference a CloudWatch metric created by container insights for ECS/Fargate
- How do you deploy existing deployment artifacts through codepipeline?
- Finding Canonical ID of the account using CDK
- AWS CodePipeline BuildAction not detecting buildspec.yml secondary artifacts
- How to extend AWS CDK with non AWS Resources during deploy
- How do I get a list of subnet IDs from one stack to another using SSM when StringListParameter doesn't work?
- AWS CDK - Linux EC2 Instance Cloudformation Init - /opt/aws/bin/cfn-signal doesn't run properly after reboot
- How to configure AWS CDK ApplicationLoadBalancedFargateService to log parsed JSON lines with Firelens and Firebit
- How to get EC2 ID and Private IP from EC2 Autoscaling Group using AWS CDK
- How to reference an ACM Certificate using the "Domain name" with the AWS CDK
Related Questions in AWS-PIPELINE
- how to add test phase in aws pipeline that if my API endpoint is healthy then only it is deploy to aws fargate
- How to deploy React to AWS using AWS CDK?
- CodeBuild throwing exit status 127
- How to remove web server in spring boot application and keep deploying into ecs with health check
- AWS Codedeploy failing to deploy on EC2 without any error logs
- AWS CodeDeploy only when a repo has updates and at a scheduled time
- synchronizing, scheduling and executing Node.js scripts on AWS
- How can we orchestrate and automate data movement and data transformation in AWS sagemaker pipeline
- Update config.json file for a static frontend React site, using AWS CodePipeline and CDK
- Init CodeCommit repository with seed-code stored in S3 using CDK
- Querying the queried result of array using AWS
- I am trying to create AWS Sagemaker Pipeline. ClientError: An error occurred (ValidationException) when calling the CreatePipeline operation:
- Updating Tables in AWS Redshift Datawamart
- How to passing parameter to aws glue workflow using lambda
- Why is AWS Elastic Beanstalk deployment failing randomly?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Here a working example of a pipeline initialization with
CDKv2using aCodeCommitrepo:If you have a look at the following link you can view that
CodePipelineSourcecan interact withGithubusing GitHubSourceOptions options and gitHub method.