How do I retrieve a secrete stored using eas secret:create
from within my app (created with eas build
)?
I recall there was some way to do this but I can't recall how it was done. I vaguely recall something like
import { Secrets } from 'expo'
//...
const mySecretValue = await Secrets.getAsync('mySecretKey')
but that's not working for me now.