How to Automate Project Versioning and Releases with Continuous Deployment

1 · CSS-Tricks · Nov. 2, 2020, 5:02 p.m.
Having a semantically versioned software will help you easily maintain and communicate changes in your software. Doing this is not easy. Even after manually merging the PR, tagging the commit, and pushing the release, you still have to write release notes. There are a lot of different steps, and many are repetitive and take time. Let’s look at how we can make a more efficient flow and completely automating our release process by plugin semantic versioning into a continuous deployment … Read arti...