2022-11-28
|~1 min read
|183 words
When I was writing a Github action to automatically bump the version of the package on merge, my first attempt had a job that would try to…
2022-11-28
|~3 min read
|529 words
I spent a few hours this weekend writing a Github action to accomplish a different way of managing the versions of my library. I think the…
2022-11-28
|~2 min read
|321 words
Github actions are a convenient way to embed automation directly into your project’s repository. I was working on automating a version bump…
2022-11-28
|~2 min read
|259 words
I was reading about the SPACE Developer Framework recently in an ACM Queue article by Nicole Forsgren, Margaret-Anne Storey, Chandra Maddila…
2022-11-28
|~1 min read
|14 words
A cool example of using github actions to solve a private submodule problem https://ehlers.berlin/blog/private-submodules-in-github-ci/
2022-11-28
|~6 min read
|1015 words
I moved all of the content of this website into a Git submodule. As discussed in my writing about Git submodules, the separation of content…
2022-11-28
|~7 min read
|1377 words
Update: RSA 4096 has been deprecated in favor of the Ed25519 algorithm (source: Github). Update: Adding a section on the PEM format as it…
2022-11-28
|~2 min read
|341 words
Recently I was working on a project structured as a mono repo - smaller projects within a larger maintained their own dependencies. I wanted…
2022-11-28
|~3 min read
|517 words
Starting this morning, I was suddenly unable to update my repositories on Github. As I’d written about in the past, I prefer using SSH over…
2022-11-28
|~2 min read
|210 words
I use Netlify to manage the deployment of my site. One of the things I love about Netlify are the checks they run against each branch to…
2022-11-28
|~3 min read
|461 words
Git Clone, Pull, and Push Continuing my learnings re: Git. I wanted to better understand the use cases for three Git commands: 1. Clone…