Skip to content

Commit 8672646

Browse files
committed
Try without --path, why not
1 parent 34ee66b commit 8672646

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

analyze-project/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,11 @@ runs:
2525
result=$(poetry version)
2626
name=$(echo "$result" | awk '{print $1}')
2727
version=$(echo "$result" | awk '{print $2}')
28-
path=$("poetry env info --path")
28+
echo $name
29+
echo $version
2930
echo "name=$name" >> "$GITHUB_OUTPUT"
3031
echo "version=$version" >> "$GITHUB_OUTPUT"
32+
stuff=$(poetry env info)
3133
shell: bash
3234
working-directory: ${{ inputs.project-directory }}
3335
- name: Check for lock changes

0 commit comments

Comments
 (0)