v0.1.0
The publish job condition checks startsWith(github.ref, 'refs/tags/v') but the workflow was only triggered on branch pushes, so the tag push for v0.1.0 never ran CI and publish never fired. Adding tags: ['v*'] to the push trigger fixes this. Co-Authored-By: Eeman Asghar <eemanasghar2@gmail.com>