-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (47 loc) · 1.42 KB
/
build-win.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Build Workflow Windows
on:
push:
branches: master
jobs:
build-windows:
runs-on: windows-2019
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install Python
uses: actions/setup-python@v1
with:
python-version: '3.12'
architecture: 'x64'
- name: Install requirements
run: |
pip install -r requirements.txt
- name: Run PyInstaller
run: |
pyinstaller --name SerialToUdpTranslatorV1.0 main.py --onefile --windowed
- uses: actions/upload-artifact@v2
with:
name: SerialToUdpTranslator
path: dist/SerialToUdpTranslatorV1.0.exe
- name: Create release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v1.0.0
release_name: v1.0.0
body: |
Release v1.0.0
draft: false
prerelease: false
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{steps.create_release.outputs.upload_url}}
asset_path: dist/SerialToUdpTranslatorV1.0.exe
asset_name: SerialToUdpTranslatorV1.0-Windows-x64.exe
asset_content_type: application/zip