Skip to content

Commit

Permalink
fix: use $HOME to set path on Windows PowerShell
Browse files Browse the repository at this point in the history
  • Loading branch information
ok-nick committed Aug 3, 2023
1 parent 27435a1 commit de1b18e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ runs:

- name: Set environment variable
if: runner.os == 'Windows'
run: echo "~/.aftman/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
run: echo "$HOME/.aftman/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
shell: powershell

- name: Set environment variable
Expand Down

0 comments on commit de1b18e

Please sign in to comment.