Skip to content

Commit

Permalink
Add prebuilt wheel install, r3
Browse files Browse the repository at this point in the history
  • Loading branch information
leshikus committed Mar 27, 2024
1 parent dabba47 commit 3d81f9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/install-wheels/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ runs:
WORKFLOW_ID=$(gh run list -w "${{ inputs.workflow }}" -R ${{ inputs.repository }} --json databaseId | jq '.[0].databaseId')
TEMP_DIR=`mktemp -d`
pushd ${TEMP_DIR}
gh run download ${WORKFLOW_ID} -R ${{ inputs.repository }} --pattern "wheels-py${{ python_version }}*"
cd wheels-py${{ python_version }}*
gh run download ${WORKFLOW_ID} -R ${{ inputs.repository }} --pattern "wheels-py${{ inputs.python_version }}*"
cd wheels-py${{ inputs.python_version }}*
${{ inputs.install_cmd }} ${{ inputs.wheels_pattern }}
popd
rm -rf ${TEMP_DIR}

0 comments on commit 3d81f9c

Please sign in to comment.