From c93aff011b4683ab39035c927f39be5d123476f9 Mon Sep 17 00:00:00 2001 From: DJ2LS <75909252+DJ2LS@users.noreply.github.com> Date: Tue, 6 Sep 2022 22:07:57 +0200 Subject: [PATCH] fixe Windows Build path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …this is hopefully the final commit in this area… --- .github/workflows/build_multiplatform.yml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/build_multiplatform.yml b/.github/workflows/build_multiplatform.yml index a4baf3ed..42463222 100644 --- a/.github/workflows/build_multiplatform.yml +++ b/.github/workflows/build_multiplatform.yml @@ -297,23 +297,13 @@ jobs: python3 -m nuitka --enable-plugin=numpy --assume-yes-for-downloads --onefile main.py -o ${{ matrix.tnc_binary_name }} - - name: Copy binaries unix linux - if: matrix.os != 'windows-latest' + - name: Copy binaries working-directory: tnc run: | mkdir dist ls -R cp ${{ matrix.daemon_binary_name }} dist/ cp ${{ matrix.tnc_binary_name }} dist/ - - - name: Copy binaries windows - if: matrix.os == 'windows-latest' - working-directory: tnc - run: | - mkdir dist - ls -R - cp daemon.dist\${{ matrix.daemon_binary_name }} dist/ - cp daemon.dist\${{ matrix.tnc_binary_name }} dist/ - name: Install Pyaudio Windows