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
Netlify updated their API to reflect the way one can update a site ENV variables. Previously (what they refer to as the "Classic env variable experience", one could update a site ENV variables through the Site endpoint (what norska-netlify uses).
It now has a specific /env endpoint to configure ENV variables. Note that the new experience is richer: ENV variables can be defined at the account level as well as site level, and can be scoped to deploy preview/production/etc.
Norska should be updated to:
Detect if runs on the Classic or New experience. Maybe we can get this information from the site details. Or we'll have to try doing a call, catch a potential error and fallback to the other.
Run the appropriate code depending on the version
Temporary workaround: Manually update the env variables through the UI. Check the configureSite in norska-netlify/lib/enable.js. It creates the newVars variable that contain the list of all env variables to add.
Netlify updated their API to reflect the way one can update a site ENV variables. Previously (what they refer to as the "Classic env variable experience", one could update a site ENV variables through the Site endpoint (what norska-netlify uses).
It now has a specific
/env
endpoint to configure ENV variables. Note that the new experience is richer: ENV variables can be defined at the account level as well as site level, and can be scoped to deploy preview/production/etc.Norska should be updated to:
Temporary workaround: Manually update the env variables through the UI. Check the
configureSite
innorska-netlify/lib/enable.js
. It creates thenewVars
variable that contain the list of all env variables to add.Source: https://open-api.netlify.com/#tag/environmentVariables/operation/createEnvVars
The text was updated successfully, but these errors were encountered: