Home > Enterprise >  Automate flutter build iOS in codemagic
Automate flutter build iOS in codemagic

Time:06-02

I'm working on a flutter project and I want to buid an IPA from my windows because I don't have a Mac. So I used codemagic and it works perfectly but my problem is that I did it manually from the website, is there a way to make it automatic like adding a file codemagic.yaml in my project route, how can I do it. It's my first time using codemagic any help is highly appreciated.

CodePudding user response:

If your project is hosted on Github, you can use it as an action in Github Actions. This way, every time (for example) your project is merged to the main branch, it can automatically create the IPA file, and further automate the deployment process.

https://flutterci.com/

  • Related