Skip to content

Commit 24a9cd4

Browse files
committed
Removed the entire "Upload wheels artifact" step, because cf recipe intentionally doesn't emit a standalone wheel (conda-forge distributes conda packages, not wheels)
1 parent a04d7a8 commit 24a9cd4

1 file changed

Lines changed: 0 additions & 21 deletions

File tree

.github/workflows/conda-package-cf.yml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ jobs:
5959
shell: bash -el {0}
6060
run: |
6161
echo "CONDA_BLD=/usr/share/miniconda/conda-bld/linux-64/" >> "$GITHUB_ENV"
62-
echo "WHEELS_OUTPUT_FOLDER=$GITHUB_WORKSPACE/" >> "$GITHUB_ENV"
6362
6463
- name: Build conda package
6564
run: |
@@ -79,12 +78,6 @@ jobs:
7978
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
8079
path: ${{ env.CONDA_BLD }}${{ env.PACKAGE_NAME }}-*.conda
8180

82-
- name: Upload wheels artifact
83-
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
84-
with:
85-
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Wheels Python ${{ matrix.python }}
86-
path: ${{ env.WHEELS_OUTPUT_FOLDER }}mkl_service-*.whl
87-
8881
build_windows:
8982
runs-on: windows-latest
9083

@@ -132,7 +125,6 @@ jobs:
132125
shell: bash -el {0}
133126
run: |
134127
echo "CONDA_BLD=$CONDA\\conda-bld\\win-64\\" >> "$GITHUB_ENV"
135-
echo "WHEELS_OUTPUT_FOLDER=$GITHUB_WORKSPACE\\" >> "$GITHUB_ENV"
136128
137129
- name: Show Conda info
138130
run: |
@@ -151,12 +143,6 @@ jobs:
151143
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
152144
path: ${{ env.CONDA_BLD }}${{ env.PACKAGE_NAME }}-*.conda
153145

154-
- name: Upload wheels artifact
155-
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
156-
with:
157-
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Wheels Python ${{ matrix.python }}
158-
path: ${{ env.WHEELS_OUTPUT_FOLDER }}mkl_service-*.whl
159-
160146
test_linux:
161147
needs: build_linux
162148
runs-on: ${{ matrix.runner }}
@@ -359,7 +345,6 @@ jobs:
359345
shell: bash -el {0}
360346
run: |
361347
echo "CONDA_BLD=$CONDA/conda-bld/osx-64/" >> "$GITHUB_ENV"
362-
echo "WHEELS_OUTPUT_FOLDER=$GITHUB_WORKSPACE/" >> "$GITHUB_ENV"
363348
364349
- name: Build conda package
365350
shell: bash -el {0}
@@ -380,12 +365,6 @@ jobs:
380365
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
381366
path: ${{ env.CONDA_BLD }}${{ env.PACKAGE_NAME }}-*.conda
382367

383-
- name: Upload wheels artifact
384-
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
385-
with:
386-
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Wheels Python ${{ matrix.python }}
387-
path: ${{ env.WHEELS_OUTPUT_FOLDER }}mkl_service-*.whl
388-
389368
test_osx:
390369
needs: build_osx
391370
runs-on: ${{ matrix.runner }}

0 commit comments

Comments
 (0)