Skip to content

Commit

Permalink
Merge pull request #54 from garrows/fix-working-dir
Browse files Browse the repository at this point in the history
Fixes issue where relative_dir doesn't work
orklah authored Jul 6, 2023
2 parents 73f49b6 + f70d3a1 commit 5c33a1b
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -40,6 +40,9 @@ inputs:
ssh_domain:
description: The domain to gather SSH public keys for (automatic for github.com, gitlab.com, bitbucket.org)
required: false
relative_dir:
description: If your composer file is not in the directory, you can specify the relative directory.
required: false


runs:
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ if [ ! -z "$INPUT_REPORT_FILE" ]; then
fi

SHOW_INFO=""
if [ "$INPUT_SHOW_INFO" = "true"]; then
if [ "$INPUT_SHOW_INFO" = "true" ]; then
SHOW_INFO="--show-info=true"
fi

0 comments on commit 5c33a1b

Please sign in to comment.