You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by li...@apache.org on 2022/12/25 05:02:28 UTC

[arrow-adbc] branch main updated: chore(dev/release): fix upload stage for Linux packages (#274)

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

lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


The following commit(s) were added to refs/heads/main by this push:
     new 10977ff  chore(dev/release): fix upload stage for Linux packages (#274)
10977ff is described below

commit 10977ffce2d889fe57f12bb6810a90213247b7ce
Author: David Li <li...@gmail.com>
AuthorDate: Sun Dec 25 00:02:23 2022 -0500

    chore(dev/release): fix upload stage for Linux packages (#274)
    
    Fixes #270.
---
 .github/workflows/packaging.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/packaging.yml b/.github/workflows/packaging.yml
index 05a044e..e0b3bce 100644
--- a/.github/workflows/packaging.yml
+++ b/.github/workflows/packaging.yml
@@ -542,9 +542,9 @@ jobs:
               -name '*.jar' -or \
               -name '*.pom' -or \
               -name '*.whl' -or \
-              -name 'adbc_*.tar.gz' \
-              -name 'almalinux-*.tar.gz' \
-              -name 'debian-*.tar.gz' \
+              -name 'adbc_*.tar.gz' -or \
+              -name 'almalinux-*.tar.gz' -or \
+              -name 'debian-*.tar.gz' -or \
               -name 'ubuntu-*.tar.gz' \
             ')' \
             -exec mv '{}' upload-staging \;