From c606914006ed41160865a0982598485eec8115fe Mon Sep 17 00:00:00 2001 From: DJ2LS <75909252+DJ2LS@users.noreply.github.com> Date: Fri, 13 Aug 2021 21:15:14 +0200 Subject: [PATCH] Delete build-tnc --- .github/workflows/build-tnc | 44 ------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/build-tnc diff --git a/.github/workflows/build-tnc b/.github/workflows/build-tnc deleted file mode 100644 index 853cebd8..00000000 --- a/.github/workflows/build-tnc +++ /dev/null @@ -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}}