I have a public repository for an open sourced project, I also have a CI/CD platform which listens for my commits and builds my application.
The issue is I have important files for the build, but that I don't want to become public in the repo.
Since the CICD is pulling from GitHub first, it is not getting the files needed to build, so it fails.
How Can I have a copy of the sensitive files for the CICD, and the ignored files for the public repo?
I am using the CodeMagic CI/CD for my flutter app BTW.