Update add-artifacts-to-current-release.yml
Fabio Cevasco h3rald@h3rald.com
Sun, 07 Jan 2024 21:58:34 +0100
1 files changed,
7 insertions(+),
7 deletions(-)
M
.github/workflows/add-artifacts-to-current-release.yml
→
.github/workflows/add-artifacts-to-current-release.yml
@@ -46,6 +46,13 @@ shell: bash
run: | echo "$HOME/.nimble/bin" >> $GITHUB_PATH echo $GITHUB_WORKSPACE >> $GITHUB_PATH + + # Sets path (Windows) + - name: Update %PATH% + run: | + echo "${HOME}/.nimble/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + echo "${GITHUB_WORKSPACE}" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + if: matrix.os == 'windows-latest' - name: Setup Msys2 if: matrix.os == 'windows-latest'@@ -60,13 +67,6 @@ autotools
mingw-w64-x86_64-perl-locale-maketext mingw-w64-x86_64-toolchain mingw-w64-x86_64-autotools - - # Sets path (Windows) - - name: Update %PATH% - run: | - echo "${HOME}/.nimble/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - echo "${GITHUB_WORKSPACE}" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - if: matrix.os == 'windows-latest' # Install the Nim compiler - name: Install Nim