Hello all, I updated from 1.8.1 to 1.9.0 then 1.9.5. All seems to work even the Github connection.
In Git configuration I see my Github user but when trying to deploy a new function, repositories are empty... Do you have any suggestions?
Thanks
Edit: found the issue, the web installer changed my .env from this:
_APP_VCS_GITHUB_PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY-----
XXXXXXXXXX
XXXXXXXXXX
-----END RSA PRIVATE KEY-----"
To something like this:
_APP_VCS_GITHUB_PRIVATE_KEY="\\\\\\\-----BEGIN RSA PRIVATE KEY-----
I updated like before then docker compose up -d then working!
Is there a better way to write the private key instead of new lines, I remember having a lot of issue accross before all upgrades I made in the past with this Github private key...
I'm glad to hear the issue is resolved. You can use the \n newline character to insert a line break; I'm not aware of any other way to do it.
Recommended threads
- hi guys! my site is not accesible in my ...
- MongoDb Database Breaks integer[] & bigi...
I've got a table with the below column created. When I try to insert the value `[-3408048000]` into it, the dart sdk cloud function call is successful (no error...
- Delete on cascade from Cloud Function
I'm writing a Python function that deletes a user's main row from a table in my database. This row has relationships with other tables that use cascade deletion...