Hello everyone.. I'm pretty new to both dagger and GHA so sorry if this is obvious..
When passing an access token to a dagger workflow as a Secret type, I think I need to use --token=env:TOKEN_SECRET, right?
I don't think secrets in GHA are accessible like that though, are they? It seems like they are expected to be used like ${{ secrets.TOKEN_SECRET }}.
Is it right that using a string type and passing the value like --token=${{ secrets.TOKEN_SECRET }} would include the value in the output logs?
Is there a suggested way I should be doing this?
Thanks in advance.