From 9109c71f2fa7182e230de2f3cee3686ba8a4bb5b Mon Sep 17 00:00:00 2001 From: Michael Behrisch Date: Sat, 8 Apr 2023 17:51:25 +0200 Subject: [PATCH] trying to fix wheel paths #3 --- .github/workflows/wheel-linux.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/wheel-linux.yml b/.github/workflows/wheel-linux.yml index 4eaf7341ab9..8c1accfd451 100644 --- a/.github/workflows/wheel-linux.yml +++ b/.github/workflows/wheel-linux.yml @@ -37,9 +37,9 @@ jobs: cd tools python -m pip install build python build/version.py build/setup-sumolib.py ./setup.py - python -m build --wheel + python -m build --wheel -o ../wheelhouse python build/version.py build/setup-traci.py ./setup.py - python -m build --wheel + python -m build --wheel -o ../wheelhouse - name: Building Python wheels (latest manylinux docker) # if: github.repository == 'DLR-TS/sumo' @@ -64,9 +64,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: manylinux-wheels - path: | - wheelhouse - tools/dist + path: wheelhouse test-wheels: needs: [build-manylinux-wheels]