From ee3373c5e3a53181f684986df7b160204a21d799 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 25 Jan 2026 14:09:01 +0100 Subject: [PATCH] build borg.exe in dist/binary --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 109834b09..6cb2bf0c8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: |