2 posts tagged with "GitHub Actions"
Semantic Versioning with GitHub Actions
Posted on August, 2021In this post I wanted to document some exploration I did around using GitHub Actions to automatically generate a semantic versioning compatible tag in certain circumstances. I’m going to assume the reader has a basic knowledge of both GitHub Actions and semantic versioning.
Requirements
Here are the requirements I’m trying to meet:
- Upon commit to the
trunkbranch, a new tag and release is created. - There must be an easy way to indicate whether the release is a major, minor, or patch release.
There’s a number of assumptions that I’m going to go by since situations outside of these might complicate this initial investigation.
Read full postConverting my blog to use GitHub Actions
Posted on August, 2021As of late I’ve been doing a lot of work with GitHub Actions, so in an attempt to minimize the number of technologies I’m using in my side projects I’ve converted this blog to using them for its build and deploy process. Overall, the experience was painless; the only hiccups were things not directly related to GitHub Actions (like forgetting to set the default region for the AWS CLI). The steps were:
Read full post
