From 249da011fe90caf18fec0fffbafc0bb6da4775f9 Mon Sep 17 00:00:00 2001 From: Daan Selen Date: Mon, 30 Mar 2026 20:35:54 +0200 Subject: [PATCH] chore: make relative --- .github/workflows/cross-compile.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cross-compile.yaml b/.github/workflows/cross-compile.yaml index 5ac41ee..d19a749 100644 --- a/.github/workflows/cross-compile.yaml +++ b/.github/workflows/cross-compile.yaml @@ -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