what's the recommended way to inject a secret variable into an interpolation in a file while building a container/context?
My Github Action i'm trying to replicate does this:
poetry config system-git-client true
echo "https://myorg:${{ secrets.GH_PAT_NEW }}@github.com" > $HOME/.git-credentials
git config --global credential.helper store
in order to read from private repositories. Dagger is not allowing me to expand a secret variable like that in an echo with_exec, but my current solution (include a shell script as a file in the image that just emits that interpolation) is a little awkward. Any better recommendation?

I was kind of expecting a


