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
I want to save the commit hash and date in an env variable when I deploy using Github Actions so that I can show it in my app. For that, I have this in my Github Action:
The problem is, that whenever I add a new env variable with arc env, the console is logging the values of all my other values. That includes my secrets. I want to avoid the secrets being logged in GitHub Actions since that is not so safe.
I would love to have a flag like --quiet to avoid showing the secret values while adding a new variable.
The text was updated successfully, but these errors were encountered:
I want to save the commit hash and date in an env variable when I deploy using Github Actions so that I can show it in my app. For that, I have this in my Github Action:
The problem is, that whenever I add a new env variable with
arc env
, the console is logging the values of all my other values. That includes my secrets. I want to avoid the secrets being logged in GitHub Actions since that is not so safe.I would love to have a flag like
--quiet
to avoid showing the secret values while adding a new variable.The text was updated successfully, but these errors were encountered: