Skip to content

Commit 6957620

Browse files
committed
f
1 parent f31f289 commit 6957620

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release_artifacts.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)