From 8d303f5c4fa975192ff80721720753995627a999 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Wed, 17 Jan 2024 22:43:26 -0500 Subject: [PATCH] workflows/release: fix @v4 artifact action usage (#53) --- .github/workflows/release.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3733e6b..5a1e5bf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: - name: upload linux dists uses: actions/upload-artifact@v4 with: - name: pyrage-dists + name: pyrage-dists-linux path: dist/ release-macos: @@ -46,7 +46,7 @@ jobs: - name: upload macos dists uses: actions/upload-artifact@v4 with: - name: pyrage-dists + name: pyrage-dists-macos path: dist/ release-windows: @@ -70,7 +70,7 @@ jobs: - name: upload windows dists uses: actions/upload-artifact@v4 with: - name: pyrage-dists + name: pyrage-dists-windows path: dist/ pypi-publish: @@ -93,8 +93,9 @@ jobs: - name: fetch dists uses: actions/download-artifact@v4 with: - name: pyrage-dists + pattern: pyrage-dists-* path: dist/ + merge-multiple: true - name: publish uses: pypa/gh-action-pypi-publish@v1.8.11