Skip to content

Commit c35bbb4

Browse files
committed
Try quoting
1 parent 8e5f35a commit c35bbb4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

analyze-project/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ runs:
2525
result=$(poetry version)
2626
name=$(echo "$result" | awk '{print $1}')
2727
version=$(echo "$result" | awk '{print $2}')
28-
echo "name=$name" >> $GITHUB_OUTPUT
29-
echo "version=$version" >> $GITHUB_OUTPUT
28+
echo "name=$name" >> "$GITHUB_OUTPUT"
29+
echo "version=$version" >> "$GITHUB_OUTPUT"
3030
project_path=$(poetry env info --path)
31-
echo "venv-path=$project_path" >> $GITHUB_OUTPUT
31+
echo "venv-path=$project_path" >> "$GITHUB_OUTPUT"
3232
shell: bash
3333
working-directory: ${{ inputs.project-directory }}
3434
- name: Check for lock changes

0 commit comments

Comments
 (0)