Skip to content

Commit

Permalink
test action
Browse files Browse the repository at this point in the history
  • Loading branch information
vijayamadhavareddy committed Apr 15, 2024
1 parent 987fb0f commit ea68397
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aws_ssm.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def run(aws_parameters: dict[str, AwsParameter]):
print(f"params_file_path: {params_file_path}")
print(params_file_path)
print(f"workspace: {os.getenv('GITHUB_WORKSPACE')}")
if params_file_path is not None:
if params_file_path is not None and params_file_path != "":
path = pathlib.PurePath(os.getenv('GITHUB_WORKSPACE'), params_file_path)
with open(path, 'r') as f:
params_from_file = parse_input_params(f.read())
Expand Down

0 comments on commit ea68397

Please sign in to comment.