Is there a recommended way to check out submodules...
# sst
d
Is there a recommended way to check out submodules in Seed?
f
submodules aren’t supported out of the box. But you can add scripts/git commands you want to run in the buildspec
here are some details on adding a buildspec https://seed.run/docs/adding-a-build-spec
d
Yah I added the script, getting auth error
tried adding SSH key to the org, got this error:
The given key is not a private key. Please check the SSH key and try again.
the ssh key was generated via GH's recommended algo:
Copy code
$ ssh-keygen -t ed25519 -C "<mailto:your_email@example.com|your_email@example.com>"
I think it's expecting RSA
d
That's where the error is coming from
The given key is not a private key. Please check the SSH key and try again.
Guess I'll just use PEM, but would be nice to use ed25519
f
Yeah it is expecting rsa
ssh-keygen -m PEM -t rsa -C "<mailto:your_email@example.com|your_email@example.com>"
Yup, i will let the team know
d
Got it working with PEM 🚀