mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
Delete build-tnc
This commit is contained in:
parent
45c8f745ae
commit
c606914006
1 changed files with 0 additions and 44 deletions
44
.github/workflows/build-tnc
vendored
44
.github/workflows/build-tnc
vendored
|
@ -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}}
|
Loading…
Reference in a new issue