From 5a3adcb329aae5372359beae4bc5951d1b548a5c Mon Sep 17 00:00:00 2001 From: Alexandre Marcireau Date: Fri, 20 Oct 2023 16:08:06 +1100 Subject: [PATCH] Set working directory --- .github/workflows/build_wheels.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index f16db4b..d683e2a 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -52,7 +52,8 @@ jobs: name: wheelhouse path: wheelhouse - run: ls wheelhouse # @DEV - - run: for file in wheelhouse/*.whl; do mv $file "$(printf "$file" | sed -r 's/^(colourtime)-(\d\.\d\.\d)-(.+)$/\1-\2+local-\3/')"; done + - run: for file in *.whl; do mv $file "$(printf "$file" | sed -r 's/^(colourtime)-(\d\.\d\.\d)-(.+)$/\1-\2+local-\3/')"; done + working-directory: wheelhouse - run: ls wheelhouse # @DEV - run: python -m pip install --find-links wheelhouse colourtime+local shell: bash