I found this post, which is exactly what I’m trying to do (i.e. when release is created on github, which creates a git tag, trigger a deployment on circle).
I just wanted to ask if there’s been any changes to this, or if the situation is still the same as described in the linked post.
Thanks
Edit: If deployments can’t be done automatically whenever a new github release is created (which, again, creates a git tag), then what recommendations do folks have in order to achieve this goal?
Should I set up a github action to forward a API request to the CircleCI API to trigger a job?
Publishing a release on GitHub still cannot trigger builds on Circle.
I think the reason is that GitHub has different webhooks for these events.
What I ended up doing is writing a custom API endpoint on our servers that gets triggered by GitHub’s release published webhook that, it turn, triggers a Circle build through an API call.