I need to change some parts of the original flutter code in my project. I know that I can do so in my local copy. However, we are working as a group and I don't want my changes to be local.
Also, we will probably use GitHub actions for CD. If I only change my local copy of the flutter source code, the executable/app generated by the CD won't match what I'm locally building.
In short, the problem: having GitHub CI/CD to match my local setup, and all participants in the project to share the same code-base and dependencies, with a custom fork of flutter present.
Is there any way to provide my own fork of flutter to the pubspec.yaml
file? Or are there any other solutions to this problem?
Thanks in advance