ci: fix windows build (#1132)

* ci: fix windows build

* pass bin_path via temp file
This commit is contained in:
Evgeny Poberezkin
2022-09-26 19:33:54 +01:00
committed by GitHub
parent 31d8f73eac
commit 4e57f7c488

View File

@@ -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'