Skip to content

Commit

Permalink
#13065: Use string comparison in the docker action
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitri-tenstorrent committed Sep 24, 2024
1 parent f10a92f commit b51b1e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/docker-run/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ runs:
${{ inputs.device }}
-w ${{ github.workspace }}
run: |
if [ ${{ inputs.install_wheel }} ]; then
if [ ${{ inputs.install_wheel }} = "true" ]; then
WHEEL_FILENAME=$(ls -1 *.whl)
pip3 install $WHEEL_FILENAME
fi
Expand Down

0 comments on commit b51b1e4

Please sign in to comment.