Update add-artifacts-to-current-release.yml
Fabio Cevasco h3rald@h3rald.com
Wed, 14 Apr 2021 03:18:07 +0200
1 files changed,
6 insertions(+),
2 deletions(-)
M
.github/workflows/add-artifacts-to-current-release.yml
→
.github/workflows/add-artifacts-to-current-release.yml
@@ -42,12 +42,16 @@ if: matrix.os == 'ubuntu-latest'
# Sets path (Linux, macOS) - name: Update $PATH - run: echo "$HOME/.nimble/bin" >> $GITHUB_PATH + run: | + echo "$HOME/.nimble/bin" >> $GITHUB_PATH + echo "$HOME" >> $GITHUB_PATH if: matrix.os == 'macos-latest' || matrix.os == 'ubuntu-latest' # Sets path (Windows) - name: Update %PATH% - run: echo "${HOME}/.nimble/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + run: | + echo "${HOME}/.nimble/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + echo "${HOME}" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append if: matrix.os == 'windows-latest' # Install the Nim compiler