Overview
Three days ago, I decided to use CircleCI
as a CI/CD tool to deploy my projects.
What I was looking for was a way to use Github actions and CircleCI to deploy my projects.
I have a project and have two branches/flavours: production
and development
.
For both of them I want to use Github actions to trigger some tests and code checking whenever I push to the branches.
But whenever I create a release out of the production
, I want to do some other stuff, for example in my case I want to deploy my app project to app stores.
Since I was/am completely new to CircleCI, I had a hard time to find a way to do this, so decided to share it in this blog post.