Update build-tnc.yml

This commit is contained in:
DJ2LS 2021-08-13 21:19:02 +02:00 committed by GitHub
parent 4fd577967f
commit 66e246bd9f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,17 +41,16 @@ jobs:
TARGET: windows TARGET: windows
CMD_BUILD: pyinstaller -F -w -n codec2-FreeDATA-TNC daemon.py CMD_BUILD: pyinstaller -F -w -n codec2-FreeDATA-TNC daemon.py
OUT_FILE_NAME: codec2-FreeDATA-TNC.exe OUT_FILE_NAME: codec2-FreeDATA-TNC.exe
ASSET_MIME: application/vnd.microsoft.portable-executable ASSET_MIME: application/vnd.microsoft.portable-executable
steps:
steps: - uses: actions/checkout@v2
- uses: actions/checkout@v2 - name: Set up Python 3.9
- name: Set up Python 3.9 uses: actions/setup-python@v2
uses: actions/setup-python@v2 with:
with: python-version: 3.9
python-version: 3.9 - name: Install dependencies
- name: Install dependencies run: |
run: | python -m pip install --upgrade pip
python -m pip install --upgrade pip pip install -r requirements.txt
pip install -r requirements.txt - name: Build with pyinstaller for ${{matrix.TARGET}}
- name: Build with pyinstaller for ${{matrix.TARGET}} run: ${{matrix.CMD_BUILD}}
run: ${{matrix.CMD_BUILD}}