We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9251236 commit 936e86eCopy full SHA for 936e86e
1 file changed
action.yml
@@ -167,3 +167,19 @@ runs:
167
shell: pwsh
168
run: |
169
"$env:USERPROFILE\.local\bin" | Out-File -FilePath $env:GITHUB_PATH -Append
170
+ - name: DEBUG - Powershell
171
+ shell: pwsh
172
+ run: |
173
+ Write-Output "Printing '\$GITHUB_PATH' content:"
174
+ Get-Content $env:GITHUB_PATH;
175
+
176
+ Write-Output "Printing '~/.local/bin' content:"
177
+ Get-ChildItem ~/.local/bin;
178
+ - name: DEBUG - Bash
179
+ shell: bash
180
181
+ echo "Printing '\$GITHUB_PATH' content:"
182
+ cat $GITHUB_PATH;
183
184
+ echo "Printing '~/.local/bin' content:"
185
+ ls -l ~/.local/bin;
0 commit comments