File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -170,9 +170,9 @@ jobs:
170170 if [[ "${{ matrix.package_type }}" == "sdist" ]]; then
171171 pip${{ matrix.python }} install dist/${{needs.package_python3.outputs.sdist}}
172172 elif [[ "${{ matrix.python }}" == "2.7" ]]; then
173- pip${{ matrix.python }} install dist/${{needs.package_python2.outputs.py2_wheel }}
173+ pip${{ matrix.python }} install dist/${{needs.package_python2.outputs.wheel }}
174174 else
175- pip${{ matrix.python }} install dist/${{needs.package_python3.outputs.py3_wheel }}
175+ pip${{ matrix.python }} install dist/${{needs.package_python3.outputs.wheel }}
176176 fi
177177
178178 pyminify --version
@@ -203,7 +203,7 @@ jobs:
203203 - name : Install package
204204 env :
205205 PYTHON3_SDIST : ${{ needs.package_python3.outputs.sdist }}
206- PYTHON3_WHEEL : ${{ needs.package_python3.outputs.py3_wheel }}
206+ PYTHON3_WHEEL : ${{ needs.package_python3.outputs.wheel }}
207207 run : |
208208 if [[ "${{ matrix.package_type }}" == "sdist" ]]; then
209209 pip3.14 install "dist/$PYTHON3_SDIST"
You can’t perform that action at this time.
0 commit comments