Closed IKRAMULHAQ786 closed 2 months ago
My Bad. I am not very expert with the ios development at the moment. so i thought may be the error has something to do with the GitAction. But it was not. I just modified Build Configuration so that each scheme targets the right dart entry point both locally and in github actions. I replaced the absolute paths into relative paths and the error was gone.
Old Configuration:
Release-dev : /mac/StudioProjects/cryodrive/lib/main_dev.dart
Release-stag : /mac/StudioProjects/cryodrive/lib/main_stag.dart
Release-prod : /mac/StudioProjects/cryodrive/lib/main.dart
New Configuration:
Release-dev : lib/main_dev.dart
Release-stag : lib/main_stag.dart
Release-prod : lib/main.dart
I have completed the setup as you mentioned in the readme file. When i ran the workflow it failed and surprisingly it was looking for dart enrty point at the local path instead of repository path. here is error details:
I wonder is there any way i could specify (if needed) where to look for the dart-entry-point.