File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -22,14 +22,15 @@ runs:
2222 - name : Get project name and version
2323 id : get_project_info
2424 run : |
25- result=$(poetry version -C "${{ inputs.project-directory }} ")
25+ result=$(poetry version")
2626 name=$(echo "$result" | awk '{print $1}')
2727 version=$(echo "$result" | awk '{print $2}')
2828 echo "name=$name" >> $GITHUB_OUTPUT
2929 echo "version=$version" >> $GITHUB_OUTPUT
30- project_path=$(poetry env info --path -C "${{ inputs.project-directory }}" )
30+ project_path=$(poetry env info --path)
3131 echo "venv-path=$project_path" >> $GITHUB_OUTPUT
3232 shell : bash
33+ working-directory : ${{ inputs.project-directory }}
3334 - name : Check for lock changes
3435 run : poetry check --lock -C "${{ inputs.project-directory }}"
3536 shell : bash
You can’t perform that action at this time.
0 commit comments