Skip to content
Discussion options

You must be logged in to vote

For anyone else finding this in the future:

The CLI (regardless of being run locally or in a CD-pipeline) requires a config.toml-file. It also validates the content (hence the error). This is true regardless of the CI-command you're running needs any configuration (supabase db push doesn't).

You basically have 3 options.

Option 1 -
In your CD-pipeline just programatically overwrite your checked in config.toml with a config.toml that will pass validation (I think an empty one will do).

Option 2 -
Declare the SUPABASE_SEND_EMAIL_HOOK_SECRET as a secret in Github and pick it up in your .yml-file :
env:
SUPABASE_SEND_EMAIL_HOOK_SECRET: ${{ secrets. SUPABASE_SEND_EMAIL_HOOK_SECRET }}

The confi…

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
2 replies
@muezz
Comment options

@IPJT
Comment options

Answer selected by IPJT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants