Skip to content

Commit 67b8c30

Browse files
committed
fix paths using PROJECT_DIR
1 parent c5cc2bc commit 67b8c30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,11 @@ jobs:
9595
env:
9696
CIBW_BEFORE_BUILD: >-
9797
rm -rf {package}/build &&
98-
cat tools/wheel/LICENSE_binary.txt >> {package}/LICENSE/LICENSE
98+
cat $PROJECT_DIR/tools/wheel/LICENSE_binary.txt >> {package}/LICENSE/LICENSE
9999
CIBW_BEFORE_BUILD_WINDOWS: >-
100100
pip install delvewheel &&
101101
rm -rf {package}/build &&
102-
cat tools/wheel/LICENSE_binary.txt >> {package}/LICENSE/LICENSE
102+
cat $PROJECT_DIR/tools/wheel/LICENSE_binary.txt >> {package}/LICENSE/LICENSE
103103
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: >-
104104
delvewheel repair -w {dest_dir} {wheel}
105105
# On Windows, we explicitly request MSVC compilers (as GitHub Action runners have

0 commit comments

Comments
 (0)