-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (27 loc) · 750 Bytes
/
Copy pathbuild.yml
File metadata and controls
34 lines (27 loc) · 750 Bytes
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
name: Build
on:
push:
branches: [main, master]
tags: ["v*"]
pull_request:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: pip install -r requirements.txt pyinstaller
- name: Build exe
run: pyinstaller dictation_hotkey.spec
- uses: actions/upload-artifact@v4
with:
name: DictationHotkey
path: dist/DictationHotkey.exe
- uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/v')
with:
files: dist/DictationHotkey.exe
token: ${{ secrets.PUB_TOKEN }}