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 b960b9f commit 0ab1e0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ runs:
env:
INPUT_PARAMS: ${{ inputs.parameters }}
INPUT_PARAMS_FILE_PATH: ${{ inputs.params-file }}
WORKSPACE_DIR: $GITHUB_WORKSPACE
WORKSPACE_DIR: ${{ env.GITHUB_WORKSPACE }}
1 change: 1 addition & 0 deletions src/aws_ssm.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ def run(aws_parameters: dict[str, AwsParameter]):
params_inline = parse_input_params(input_params) if input_params is not None else {}
params_from_file = {}
params_file_path = os.getenv('INPUT_PARAMS_FILE_PATH')
print(f"params_file_path: {params_file_path}")
print(params_file_path)
if params_file_path is not None:
path = pathlib.PurePath(os.getenv('WORKSPACE_DIR'), params_file_path)
Expand Down

0 comments on commit 0ab1e0e

Please sign in to comment.