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 83dda4a commit 0c52cb9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ permissions:
on:
push:
branches:
- feature/github_action
-main
jobs:
test:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions src/aws_ssm.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ def run(aws_parameters: dict[str, AwsParameter]):
path = pathlib.PurePath(os.getenv('GITHUB_WORKSPACE'), params_file_path)
with open(path, 'r') as f:
params_from_file = parse_input_params(f.read())
params = {**params_from_file, **params_inline}.items()
print(params)
params = {**params_from_file, **params_inline}
run(params)

0 comments on commit 0c52cb9

Please sign in to comment.