You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running Netlify Github Action, the following env vars:
MEILISEARCH_URL
MEILISEARCH_INDEX_UID
MEILISEARCH_API_KEY
are reported twice:
in netlify.toml, which is the reference file for Netlify deploys, in the [context.production.environment] section
in .github/workflows/netlify.yml, which performs the build (pure build in yarn) using the env vars and then deploys to Netlify (referring to netlify.toml)
The variables should be centralized in a single place, however is not clear:
why the build step in the Github Action is not performed using the steps described in the build section of netlify.toml
if [context.production.environment] section is the right place to define these env vars, or it is useless (IMHO) to have them here
The text was updated successfully, but these errors were encountered:
When running Netlify Github Action, the following env vars:
are reported twice:
netlify.toml
, which is the reference file for Netlify deploys, in the[context.production.environment]
section.github/workflows/netlify.yml
, which performs the build (pure build in yarn) using the env vars and then deploys to Netlify (referring tonetlify.toml
)The variables should be centralized in a single place, however is not clear:
netlify.toml
[context.production.environment]
section is the right place to define these env vars, or it is useless (IMHO) to have them hereThe text was updated successfully, but these errors were encountered: