Skip to content

Commit

Permalink
Also update run action's setenv
Browse files Browse the repository at this point in the history
  • Loading branch information
Bret Ambrose committed Nov 12, 2024
1 parent 4eb5301 commit 513934e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def run_action(action, env):
# Set build environment from config
env.shell.pushenv()
for var, value in getattr(env, 'env', {}).items():
env.shell.setenv(var, value)
env.shell.setenv(var, value, is_secret=True)

if isinstance(action, str):
action_cls = Scripts.find_action(action)
Expand Down

0 comments on commit 513934e

Please sign in to comment.