build borg.exe in dist/binary

This commit is contained in:
Thomas Waldmann 2026-01-25 14:09:01 +01:00
parent 3358ba910e
commit ee3373c5e3
No known key found for this signature in database
GPG key ID: 243ACFA951F78E01

View file

@ -583,14 +583,15 @@ jobs:
# build borg.exe
. env/bin/activate
pip install -e .
pyinstaller -y scripts/borg.exe.spec
mkdir -p dist/binary
pyinstaller -y --clean --distpath=dist/binary scripts/borg.exe.spec
# build sdist and wheel in dist/...
python -m build
- uses: actions/upload-artifact@v4
with:
name: borg-windows
path: dist/borg.exe
path: dist/binary/borg.exe
- name: Run tests
run: |