Skip to content

Commit 8fc3adc

Browse files
committed
Fix wheelhouse naming (#1232)
* Test wheelhouse name * Fix wheelhouse naming * Fix wheelhouse naming (cherry picked from commit 8b0180a)
1 parent ff3c957 commit 8fc3adc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,9 @@ jobs:
154154
export IFS='-'
155155
read -a strarr <<< $wheel_name
156156
export version="${strarr[1]}"
157-
export name=ansys-dpf-core-v$version-wheelhouse-${{ runner.os }}-${{ matrix.python-version }}.zip
158-
echo "name=${name}" >> $GITHUB_OUTPUT
157+
echo $version
158+
export name=ansys-dpf-core-v${version}-wheelhouse-${{ runner.os }}-${{ matrix.python-version }}.zip
159+
echo "name=${name}" >> "$GITHUB_OUTPUT"
159160
160161
- name: "Zip wheelhouse"
161162
if: inputs.wheelhouse == 'true'

0 commit comments

Comments
 (0)