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
This action defines the input script which is a single string (attempting to pass a list of commands results in error)
When multiple commands are chained with cmd1 && cmd2 they are passed to the container in the INPUT_SCRIPT environment variable
The drone-ssh plugin reads the INPUT_SCRIPT env var into the script.string which is described as execute single commands for github action
All the environment variable passed to drone-ssh are concatenated and appended to the begining of the command that will be executed, resulting in ENV1=VAL1 ENV2=VAL2 cmd1 && cmd2
cmd2 does not get the environment variables added to its environment
The text was updated successfully, but these errors were encountered:
script
which is a single string (attempting to pass a list of commands results in error)cmd1 && cmd2
they are passed to the container in theINPUT_SCRIPT
environment variableINPUT_SCRIPT
env var into thescript.string
which is described asexecute single commands for github action
ENV1=VAL1 ENV2=VAL2 cmd1 && cmd2
cmd2
does not get the environment variables added to its environmentThe text was updated successfully, but these errors were encountered: