Update build-tnc.yml

This commit is contained in:
DJ2LS 2021-08-15 11:31:59 +02:00 committed by GitHub
parent 6d55f2c080
commit d7a55d2501
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,67 +1,49 @@
name: Build
on: name: Build/TNC
push: on: push
# tags:
# - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
jobs: jobs:
ubuntu-latest:
createrelease: runs-on: ubuntu-latest
name: Create Release
runs-on: [ubuntu-latest]
steps: steps:
- name: Create Release - name: Check out Git repository
id: create_release uses: actions/checkout@v2
uses: actions/create-release@v1 - name: Set up Python 3.8
env: uses: actions/setup-python@v2
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with:
with: python-version: 3.8
tag_name: ${{ github.ref }} - name: Install dependencies
release_name: Release ${{ github.ref }} run: |
draft: false sudo apt install portaudio19-dev
prerelease: false python -m pip install --upgrade pip
- name: Output Release URL File pip3 install pyaudio
run: echo "${{ steps.create_release.outputs.upload_url }}" > release_url.txt pip3 install psutil
- name: Save Release URL File for publish pip3 install crcengine
uses: actions/upload-artifact@v1 pip3 install pyinstaller
with: - name: Build with Pyinstaller
name: release_url working-directory: tnc
path: release_url.txt run: |
pyinstaller -F daemon.py -n daemon
pyinstaller -F main.py -n tnc
cd dist
ls -R
build:
name: Build packages
needs: createrelease
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: macos-latest
TARGET: macos
CMD_BUILD: >
pyinstaller -F -w -n daemon daemon.py &&
cd dist/ &&
zip -r9 daemon daemon.app/
OUT_FILE_NAME: daemon.zip
ASSET_MIME: application/zip
- os: windows-latest
TARGET: windows
CMD_BUILD: pyinstaller -F -w -n daemon daemon.py
OUT_FILE_NAME: daemon.exe
ASSET_MIME: application/vnd.microsoft.portable-executable
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip3 install pyaudio
pip3 install psutil
pip3 install crcengine
pip3 install threading
- name: Build with pyinstaller for ${{matrix.TARGET}}
run: ${{matrix.CMD_BUILD}}
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
prerelease: false
files: |
dist/daemon
dist/tnc
LICENSE
#- name: Save build artifacts to Action
# uses: actions/upload-artifact@v2
# with:
# name: ubuntu-latest
# path: ./tnc/dist/
# if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`