:wave: I'm wondering how can I have different seed...
# seed
s
šŸ‘‹ I'm wondering how can I have different seed.yml for different services in a pipeline for monorepo?
a
You can’t.
And why would you need it?
s
I have before_compile hooks set up to install golang and run a command, before_build to create custom domain for a service. Now I'm adding another service that does not need all these steps.
Should I use different makefiles for different service to include these hooks instead?
f
Hey @Shine Li, you can wrap a command in buildspec inside the service name check, like this https://seed.run/docs/adding-a-build-spec#run-a-script-after-deploying-a-specific-service
s
got it. thanks