mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-11 09:59:19 -04:00
build borg.exe in dist/binary
This commit is contained in:
parent
3358ba910e
commit
ee3373c5e3
1 changed files with 3 additions and 2 deletions
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
|
@ -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: |
|
||||
|
|
|
|||
Loading…
Reference in a new issue