all repos — litestore @ 7112bf12fe801aefc0ea7b8c58a20e168fc049d2

A minimalist nosql document store.

Update add-artifacts-to-current-release.yml
Fabio Cevasco h3rald@h3rald.com
Wed, 14 Apr 2021 03:18:07 +0200
commit

7112bf12fe801aefc0ea7b8c58a20e168fc049d2

parent

a30e750baab21ef545fe78bcfca01c799e225e4e

1 files changed, 6 insertions(+), 2 deletions(-)

jump to
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