I've created a "publish" workflow in new repository that publish my project on new release with this trigger
on: release: types: - created In my local machine I created a tag and pushed it:
git tag v0.0.1 main git push origin v0.0.1 Now I see that my repo contains 1 tag and 1 release, but the workflow did not run.
Why the release trigger did not fire when new release created with the tag?