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 97860b5 commit 752d348Copy full SHA for 752d348
setup-poetry/action.yml
@@ -42,6 +42,13 @@ runs:
42
Add-Content $env:GITHUB_ENV "POETRY_HOME_BIN=$HOME\.local\poetry\home\Scripts"
43
Add-Content $env:GITHUB_PATH "$HOME\.local\poetry\bin"
44
shell: pwsh
45
+ - name: Log paths
46
+ run: |
47
+ echo "POETRY_BIN_DIR=$POETRY_BIN_DIR"
48
+ echo "POETRY_HOME=$POETRY_HOME"
49
+ echo "POETRY_HOME_BIN=$POETRY_HOME_BIN"
50
+ echo "PATH=$PATH"
51
+ shell: bash
52
- name: Copy paths from $GITHUB_ENV to $GITHUB_OUTPUT
53
id: copy-paths
54
run: |
@@ -68,4 +75,8 @@ runs:
68
75
shell: bash
69
76
- name: Print Poetry version
70
77
run: poetry --version
78
79
+ - name: Log directory contents for debugging
80
+ if: failure()
81
+ run: ls -al "$POETRY_BIN_DIR" "$POETRY_HOME" "$POETRY_HOME_BIN"
71
82
0 commit comments