From 7935a66cd7b086920d587ffcb88c05c7c42e74b3 Mon Sep 17 00:00:00 2001 From: Ori Avtalion Date: Thu, 17 Oct 2024 11:43:33 +0300 Subject: [PATCH] Use unique names for artifacts --- .github/workflows/wheel.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/wheel.yml b/.github/workflows/wheel.yml index f36ea56..5e8cc1d 100644 --- a/.github/workflows/wheel.yml +++ b/.github/workflows/wheel.yml @@ -43,7 +43,7 @@ jobs: - name: Archive sdist uses: actions/upload-artifact@v4 with: - name: wheels + name: wheels ${{ matrix.machine }}-${{ matrix.cloud }}-${{ matrix.region }}-${{ matrix.arch }}-${{ matrix.distro }}-${{ matrix.stage }}-${{ matrix.theater }} path: dist/python-snappy*.tar.gz build: @@ -111,7 +111,7 @@ jobs: - uses: actions/upload-artifact@v4 with: path: ./wheelhouse/*.whl - name: wheels + name: wheels ${{ matrix.machine }}-${{ matrix.cloud }}-${{ matrix.region }}-${{ matrix.arch }}-${{ matrix.distro }}-${{ matrix.stage }}-${{ matrix.theater }} upload: runs-on: ubuntu-latest @@ -122,7 +122,7 @@ jobs: - name: Download test data uses: actions/download-artifact@v4.1.7 with: - name: wheels + name: wheels ${{ matrix.machine }}-${{ matrix.cloud }}-${{ matrix.region }}-${{ matrix.arch }}-${{ matrix.distro }}-${{ matrix.stage }}-${{ matrix.theater }} - name: Publish wheels to PyPI env: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}