fix trailing whitespaces

This commit is contained in:
dj2ls 2022-09-08 07:59:49 +02:00
parent c93aff011b
commit d64d839ac5

View file

@ -293,18 +293,27 @@ jobs:
working-directory: tnc
run: |
#pyinstaller freedata.spec
python3 -m nuitka --enable-plugin=numpy --assume-yes-for-downloads --onefile daemon.py -o ${{ matrix.daemon_binary_name }}
python3 -m nuitka --enable-plugin=numpy --assume-yes-for-downloads --onefile main.py -o ${{ matrix.tnc_binary_name }}
python3 -m nuitka --enable-plugin=numpy --onefile daemon.py -o ${{ matrix.daemon_binary_name }}
python3 -m nuitka --enable-plugin=numpy --onefile main.py -o ${{ matrix.tnc_binary_name }}
- name: Copy binaries
- name: Copy binaries unix linux
if: matrix.os != 'windows-latest'
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
if: matrix.os == 'windows-latest'
@ -329,7 +338,6 @@ jobs:
#cp -R ./tnc/dist/tnc ./gui/tnc
cp -R ./tnc/dist ./gui/tnc
ls -R
- name: Compress TNC
uses: thedoctor0/zip-release@master