We build our production env via GitHub Actions.
Your docs mention that framework envs are injected into the build environment.
https://vercel.com/docs/environment-variables/framework-environment-variables
This used to work, but it doesn't anymore. My build in a nutshell:
pnpm vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
pnpm vercel build --target=production --token=${{ secrets.VERCEL_TOKEN }}
pnpm vercel deploy --prebuilt --target=production --token=${{ secrets.VERCEL_TOKEN }}
If I export the environment variables in the build step I don't see any of the VERCEL_ environment variables mentioned in the docs.
Did something change recently?