nanovna-saver/.github/workflows/release_linux.yml

38 wiersze
937 B
YAML
Czysty Zwykły widok Historia

name: Linux Release
on:
push:
tags:
- v*
workflow_dispatch:
2020-06-19 07:25:22 +00:00
jobs:
2020-10-30 08:00:42 +00:00
release:
2022-09-25 16:10:09 +00:00
runs-on: ubuntu-20.04
steps:
2022-03-26 19:11:33 +00:00
- name: Checkout repository
uses: actions/checkout@v3
2022-03-26 19:11:33 +00:00
- name: Install python
run: |
sudo apt-get update
sudo apt install -y python3.9 python3-pip python3.9-venv \
python3.9-dev \
python3-pyqt5
- name: Install dependencies and pyinstall
run: |
2022-03-26 19:11:33 +00:00
python3.9 -m venv build
. build/bin/activate
2023-03-14 19:10:27 +00:00
python -m pip install pip==23.0.1 setuptools==67.6.0
pip install -r requirements.txt
2023-03-14 19:10:27 +00:00
pip install PyInstaller==5.9.0
- name: Build binary
run: |
2022-03-26 19:11:33 +00:00
. build/bin/activate
2023-03-14 20:00:56 +00:00
pyinstaller --onefile -p src -n nanovna-saver nanovna-saver.py
- name: Archive production artifacts
uses: actions/upload-artifact@v1
with:
name: NanoVNASaver.linux
path: dist/nanovna-saver