File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,10 @@ inputs:
5151 description : The domain to gather SSH public keys for (automatic for github.com, gitlab.com, bitbucket.org)
5252 required : false
5353
54+ working_dir :
55+ description : Use the given directory as working directory
56+ required : false
57+
5458outputs :
5559 time :
5660 description : ' The time the action was run'
6973 action_ssh_key : ${{ inputs.ssh_key }}
7074 action_ssh_key_pub : ${{ inputs.ssh_key_pub }}
7175 action_ssh_domain : ${{ inputs.ssh_domain }}
76+ action_working_dir : ${{ inputs.working_dir }}
7277
7378branding :
7479 icon : ' package'
Original file line number Diff line number Diff line change 3131 command_string=" $command_string $action_command "
3232fi
3333
34+ if [ -n " $action_working_dir " ]
35+ then
36+ command_string=" $command string --working-dir=$action_working_dir "
37+ fi
38+
3439if [ ! -n " $action_only_args " ]
3540then
3641 if [ " $action_command " = " install" ]
You can’t perform that action at this time.
0 commit comments