This is an automated email from the ASF dual-hosted git repository.
fokko pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-python.git
The following commit(s) were added to refs/heads/main by this push:
new 33b555a Downgrade to the previous artifact upload action (#396)
33b555a is described below
commit 33b555a1310fd75914c012c4b4cc07108b98bac0
Author: Fokko Driesprong <[email protected]>
AuthorDate: Fri Feb 9 08:27:09 2024 +0100
Downgrade to the previous artifact upload action (#396)
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/*