Skip to content

Commit

Permalink
Fix PARAMETERS_FILE_PATH variable typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tschneider-aneo committed Dec 19, 2024
1 parent ba4e67c commit 3fe9cf1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deploy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ runs:
run: |
set -ex
if [ -n "$PARAMETERS_FILE_PATH" ]; then
PARAMETERS_FILE="$(pwd)/$PARAMETERS_FILE"
PARAMETERS_FILE="$(pwd)/$PARAMETERS_FILE_PATH"
fi
cd infrastructure/quick-deploy/
cd "$INPUT_TYPE"
Expand Down
2 changes: 1 addition & 1 deletion destroy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ runs:
run: |
set -ex
if [ -n "$PARAMETERS_FILE_PATH" ]; then
PARAMETERS_FILE="$(pwd)/$PARAMETERS_FILE"
PARAMETERS_FILE="$(pwd)/$PARAMETERS_FILE_PATH"
fi
cd infrastructure/quick-deploy/
cd "$INPUT_TYPE"
Expand Down

0 comments on commit 3fe9cf1

Please sign in to comment.