Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.8'
python-version: '3.11'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyinstaller
pip install pyinstaller setuptools_scm
pip install .

- name: Determine binary name
id: binary_name
Expand Down Expand Up @@ -62,7 +63,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.8'
python-version: '3.11'
- name: Install build tools
run: pip install build
- name: Build package
Expand Down
12 changes: 12 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Release Guide

This project uses automated GitHub Actions for releases.

## How to Release
1. Ensure all tests pass on `main`.
2. Create a new tag: `git tag v1.0.0`
3. Push the tag: `git push origin v1.0.0`
4. The **Release** workflow will automatically:
- Build binaries for Windows, macOS, and Linux.
- Publish the package to PyPI.
- Create a GitHub Release with assets.
Loading