From b16072b1dce7c24a9846306434b883ff9eea95db Mon Sep 17 00:00:00 2001 From: Qingping Hou Date: Wed, 23 Oct 2024 21:26:26 -0700 Subject: [PATCH] ci(fix): use unique name for pypi linux release artifacts --- .github/workflows/columnq_cli_release.yml | 7 +++++-- .github/workflows/roapi_release.yml | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/columnq_cli_release.yml b/.github/workflows/columnq_cli_release.yml index f1fe541..cff8254 100644 --- a/.github/workflows/columnq_cli_release.yml +++ b/.github/workflows/columnq_cli_release.yml @@ -206,7 +206,7 @@ jobs: uses: actions/upload-artifact@v4 if: "matrix.platform.upload == 'true'" with: - name: wheels-linux + name: wheels-linux-${{ matrix.platform.manylinux }} path: dist - name: Archive binary if: "startsWith(github.ref, 'refs/tags/')" @@ -229,7 +229,10 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - name: wheels-linux + name: wheels-linux-2010 + - uses: actions/download-artifact@v4 + with: + name: wheels-linux-2014 - uses: actions/download-artifact@v4 with: name: wheels-macos diff --git a/.github/workflows/roapi_release.yml b/.github/workflows/roapi_release.yml index 5d57d61..dc3f715 100644 --- a/.github/workflows/roapi_release.yml +++ b/.github/workflows/roapi_release.yml @@ -208,7 +208,7 @@ jobs: uses: actions/upload-artifact@v4 if: "matrix.platform.upload == 'true'" with: - name: wheels-linux + name: wheels-linux-${{ matrix.platform.manylinux }} path: dist - name: Archive binary if: "startsWith(github.ref, 'refs/tags/')" @@ -231,7 +231,10 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - name: wheels-linux + name: wheels-linux-2010 + - uses: actions/download-artifact@v4 + with: + name: wheels-linux-2014 - uses: actions/download-artifact@v4 with: name: wheels-macos