How to execute GHA locally with MacOsx as runner #1450
-
am working to create a CI CD process to upload our IoS build to Testlight using Github Actions. After setting the Fastlane file, and having the .yml file for Github actions. I want test the Github Actions locally to build IoS. I tried to use act but it doesn't include a Macos runner. What would be the best approach to run the Github Actions Locally for IoS build? Is there any other tools or some work around? Be able to build IOS build using Github action Locally |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can run without containers starting with act v0.2.34 scheduled for release on 1. Dec. 2022. until then grab a snaphot of act or wait for the release. e.g.
|
Beta Was this translation helpful? Give feedback.
You can run without containers starting with act v0.2.34 scheduled for release on 1. Dec. 2022.
until then grab a snaphot of act or wait for the release.
e.g.
act -P macos-latest=-self-hosted
-self-hosted
means run on host, no container isolation.