I have an AWS Pipeline that is connected to GitHub via CodeStar Connection. The process looks like this:
- Pull source from GitHub
- Build project
- Run tests
- Deploy
Before (or as part of) step 4 I would like the AWS Pipeline to tag the code with a git tag and then push this back to the repo in GitHub.
How can I do this?
You will need a CodeBuild action before/after Step4 in the Pipeline that will basically execute the git tagging commands and push to origin as mentioned by other commenters. A sample buildspec for CodeBuild project will look like: