From a9aae289b74dc9f049155a9ac53a74a0a02a394a Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk Date: Wed, 27 Sep 2023 13:15:32 -0500 Subject: [PATCH] Fix upload_linux/upload_windows steps --- .github/workflows/conda-package.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/conda-package.yml b/.github/workflows/conda-package.yml index f1435f0ccc..09806bcce9 100644 --- a/.github/workflows/conda-package.yml +++ b/.github/workflows/conda-package.yml @@ -320,11 +320,16 @@ jobs: matrix: python: ['3.9', '3.10', '3.11'] steps: - - name: Download artifact + - name: Download conda artifact uses: actions/download-artifact@v3 with: name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }} + - name: Download wheel artifact + uses: actions/download-artifact@v3 + with: + name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Wheels Python ${{ matrix.python }} + - name: Install anaconda-client run: conda install anaconda-client - name: Add conda to system path @@ -353,10 +358,17 @@ jobs: uses: actions/download-artifact@v3 with: name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }} + + - name: Download wheel artifact + uses: actions/download-artifact@v3 + with: + name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Wheels Python ${{ matrix.python }} + - uses: conda-incubator/setup-miniconda@v2 with: auto-activate-base: true activate-environment: "" + - name: Install anaconda-client run: conda install anaconda-client