Skip to content

Commit a8400df

Browse files
committed
Fix a typo in wheel package name
1 parent bb3f18e commit a8400df

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/conda-package.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
8383
with:
8484
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Wheels Python ${{ matrix.python }}
85-
path: ${{ env.WHEELS_OUTPUT_FOLDER }}mkl_service-*.whl
85+
path: ${{ env.WHEELS_OUTPUT_FOLDER }}mkl_random-*.whl
8686

8787
build_windows:
8888
runs-on: windows-latest
@@ -143,7 +143,7 @@ jobs:
143143
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
144144
with:
145145
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Wheels Python ${{ matrix.python }}
146-
path: ${{ env.WHEELS_OUTPUT_FOLDER }}mkl_service-*.whl
146+
path: ${{ env.WHEELS_OUTPUT_FOLDER }}mkl_random-*.whl
147147

148148
test_linux:
149149
needs: build_linux
@@ -217,6 +217,8 @@ jobs:
217217
CHANNELS="-c $GITHUB_WORKSPACE/channel ${{ env.CHANNELS }}"
218218
export PACKAGE_VERSION=$(python -c "${VER_SCRIPT1} ${VER_SCRIPT2}")
219219
conda create -n ${{ env.TEST_ENV_NAME }} $PACKAGE_NAME=${PACKAGE_VERSION} pytest python=${{ matrix.python }} numpy=${{ matrix.numpy }} $CHANNELS
220+
conda activate ${{ env.TEST_ENV_NAME }}
221+
220222
# Test installed packages
221223
conda list
222224
@@ -310,6 +312,8 @@ jobs:
310312
)
311313
SET "WORKAROUND_DEPENDENCIES=intel-openmp"
312314
conda create -n ${{ env.TEST_ENV_NAME }} ${{ env.PACKAGE_NAME }}=%PACKAGE_VERSION% %WORKAROUND_DEPENDENCIES% pytest python=${{ matrix.python }} numpy=${{ matrix.numpy }} -c ${{ env.GITHUB_WORKSPACE }}/channel ${{ env.CHANNELS }}
315+
conda activate -n ${{ env.TEST_ENV_NAME }}
316+
313317
# Test installed packages
314318
conda list
315319

0 commit comments

Comments
 (0)