chore: make relative

This commit is contained in:
2026-03-30 20:35:54 +02:00
parent 8e3286eb17
commit 249da011fe
+4 -4
View File
@@ -47,14 +47,14 @@ jobs:
pyinstaller \
--onefile \
--name meshbook \
--distpath /dist \
--distpath ../dist \
meshbook.py
- name: Upload binaries as artifacts
uses: actions/upload-artifact@v6
with:
name: bin-linux
path: /dist
path: ./dist
prepare-windows:
runs-on: ubuntu-latest
@@ -115,14 +115,14 @@ jobs:
wine ./python-win/python.exe -m PyInstaller \
--onefile \
--name meshbook \
--distpath /dist \
--distpath ../dist \
meshbook.py
- name: Upload binaries as artifacts
uses: actions/upload-artifact@v6
with:
name: bin-windows
path: /dist
path: ./dist
compile-linux:
runs-on: ubuntu-latest