EAS Custom Build Step

Is it possible to add a custom build step to the EAS build? Locally I have a git hook that gets automatically called on checkout to generate some tables of data. Is it possible to have a custom step in the EAS build which I can call my codegen step?

you can hook into different phases in the build process using scripts in your package.json: Integrating with third-party tooling - Expo Documentation

it sounds like in this case you want to run your codegen step in eas-build-pre-install or eas-build-post-install

1 Like

Exactly what I was looking for. Thank you!

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.