This is an automated email from the ASF dual-hosted git repository.

fokko pushed a commit to branch fd-simplify-releases
in repository https://gitbox.apache.org/repos/asf/iceberg-python.git

commit 5ebc53b72d7b4e2d157ee50b708c69ab2c858a03
Author: Fokko Driesprong <[email protected]>
AuthorDate: Thu Feb 8 12:25:25 2024 +0100

    Downgrade to the previous artifact upload action
    
    With the new version, you cannot merge the different runs anymore into a 
single zip:
    
https://github.com/actions/upload-artifact?tab=readme-ov-file#breaking-changes
    
    Which is quite annoying since you have to merge them by hand.
---
 .github/workflows/python-release.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/python-release.yml 
b/.github/workflows/python-release.yml
index 5192d71..a499446 100644
--- a/.github/workflows/python-release.yml
+++ b/.github/workflows/python-release.yml
@@ -80,7 +80,7 @@ jobs:
         if: startsWith(matrix.os, 'ubuntu')
         run: ls -lah dist/* && cp dist/* wheelhouse/
 
-      - uses: actions/upload-artifact@v4
+      - uses: actions/upload-artifact@v3
         with:
-          name: "release-${{ matrix.os }}-${{ github.event.inputs.version }}"
+          name: "release-${{ matrix.os }}"
           path: ./wheelhouse/*

Reply via email to