Skip to content

Commit

Permalink
fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
Noahnc committed Oct 24, 2023
1 parent 1f9e83b commit 7e8b0d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ runs:
- name: Run InfraPatch Action
shell: bash
run: |
file = "./infrapatch/action/__main__.py"
file="./infrapatch/action/__main__.py"
arguments=()
if [ "${{ runner.debug }}" == "1" ]; then
arguments+=("--debug")
Expand All @@ -68,7 +68,7 @@ runs:
arguments+=("--working-directory" "${{ inputs.working_directory }}")
arguments+=("--default-registry-domain" "${{ inputs.default_registry_domain }}")
echo "Running command: python $file ${arguments[@]}"
python $file "${arguments[@]}"
python "$file" "${arguments[@]}"
- name: Push changes
if: ${{ inputs.push_changes == 'true' }}
Expand Down

0 comments on commit 7e8b0d6

Please sign in to comment.