We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34ee66b commit 8672646Copy full SHA for 8672646
analyze-project/action.yml
@@ -25,9 +25,11 @@ runs:
25
result=$(poetry version)
26
name=$(echo "$result" | awk '{print $1}')
27
version=$(echo "$result" | awk '{print $2}')
28
- path=$("poetry env info --path")
+ echo $name
29
+ echo $version
30
echo "name=$name" >> "$GITHUB_OUTPUT"
31
echo "version=$version" >> "$GITHUB_OUTPUT"
32
+ stuff=$(poetry env info)
33
shell: bash
34
working-directory: ${{ inputs.project-directory }}
35
- name: Check for lock changes
0 commit comments