diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index de8f3ab5bd..48601cfc24 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -134,7 +134,9 @@ jobs: shell: cmd run: | cabal build --enable-tests - echo "::set-output name=bin_path::$(cabal list-bin simplex-chat)" + cabal list-bin simplex-chat > tmp_bin_path + set /p bin_path= < tmp_bin_path + echo ::set-output name=bin_path::%bin_path% - name: Windows upload binary to release if: startsWith(github.ref, 'refs/tags/v') && matrix.os == 'windows-latest'