Skip to content

Commit

Permalink
Refactor build workflow: Update wheel file name storage to use basena…
Browse files Browse the repository at this point in the history
…me for consistency
  • Loading branch information
royshil committed Nov 8, 2024
1 parent fe87629 commit 18f5d3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
pip install dist/*.whl
# store wheel name on github env for later use
echo "WHEEL_FILE=$(ls dist/*.whl)" >> $GITHUB_ENV
echo "WHEEL_FILE=$(basename $(ls dist/*.whl))" >> $GITHUB_ENV
- name: Install built wheel Windows
if: startsWith(matrix.os, 'windows') == true
Expand All @@ -75,7 +75,7 @@ jobs:
pip install $wheelFile.FullName
# store wheel name on github env for later use
echo "WHEEL_FILE=$wheelFile.FullName" >> $env:GITHUB_ENV
echo "WHEEL_FILE=$($wheelFile.Name)" >> $env:GITHUB_ENV
- name: Test import
if: false
Expand Down

0 comments on commit 18f5d3a

Please sign in to comment.