-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (36 loc) · 1.17 KB
/
release_windows.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
name: Release Windows Exec
on:
release:
types: [created, edited]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.x
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install wheel pyinstaller pybind11
- name: Install project
run: |
pip install . --config-settings="--build-option=build_ext --define SEQSORT" -v
python setup.py build_ext --inplace --define SEQSORT
- name: Build exec
run: |
pyinstaller --clean -y spcal.spec
- name: Set output version
id: set-output
run : |
echo "SPCAL_VERSION=$(python -c "from importlib.metadata import version; print(version('spcal'))")" >> "$env:GITHUB_OUTPUT"
- name: Upload binary
id: upload
run: |
gh release upload "$env:TAG_NAME" "./dist/spcal_$env:SPCAL_VERSION.exe"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SPCAL_VERSION: ${{ steps.set-output.outputs.SPCAL_VERSION }}
TAG_NAME: ${{ github.event.release.tag_name }}