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

37 wiersze
845 B
YAML
Czysty Zwykły widok Historia

name: Windows Release
on:
push:
tags:
- v*
workflow_dispatch:
2020-06-19 07:25:22 +00:00
jobs:
release:
runs-on: windows-latest
strategy:
matrix:
arch: [x64, x86]
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
architecture: ${{ matrix.arch }}
- name: Install dependencies and pyinstall
run: |
2022-09-08 06:52:31 +00:00
python -m pip install pip==22.2.2 setuptools==65.3.0
2020-10-30 08:00:42 +00:00
pip install -r requirements.txt
2022-09-20 05:26:50 +00:00
pip install PyInstaller==5.4.1
- name: Build binary
run: |
2020-07-28 19:33:57 +00:00
pyinstaller --onefile -n nanovna-saver.exe nanovna-saver.py
- name: Archive production artifacts
uses: actions/upload-artifact@v1
with:
name: NanoVNASaver.${{ matrix.arch }}
2020-07-28 19:33:57 +00:00
path: dist/nanovna-saver.exe