Delete build-tnc

This commit is contained in:
DJ2LS 2021-08-13 21:15:14 +02:00 committed by GitHub
parent 45c8f745ae
commit c606914006
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,44 +0,0 @@
name: Build
#https://data-dive.com/multi-os-deployment-in-cloud-using-pyinstaller-and-github-actions
on:
push:
# tags:
# - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
build:
name: Build packages
needs: createrelease
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: macos-latest
TARGET: macos
CMD_BUILD: >
pyinstaller -F -n codec2-FreeDATA-TNC daemon.py &&
cd dist/ &&
zip -r9 codec2-FreeDATA-TNC codec2-FreeDATA-TNC.app/
OUT_FILE_NAME: clipster.zip
ASSET_MIME: application/zip
- os: windows-latest
TARGET: windows
CMD_BUILD: pyinstaller -F -w -n codec2-FreeDATA-TNC daemon.py
OUT_FILE_NAME: codec2-FreeDATA-TNC.exe
ASSET_MIME: application/vnd.microsoft.portable-executable
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build with pyinstaller for ${{matrix.TARGET}}
run: ${{matrix.CMD_BUILD}}