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/10/28 19:28:22 UTC

[arrow-adbc] branch main updated: ci(c/driver_manager,c/driver/postgres): actually upload wheels (#154)

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 fbaa93b  ci(c/driver_manager,c/driver/postgres): actually upload wheels (#154)
fbaa93b is described below

commit fbaa93bd624a10c07e8f8eebe913b9b85d512819
Author: David Li <li...@gmail.com>
AuthorDate: Fri Oct 28 15:28:17 2022 -0400

    ci(c/driver_manager,c/driver/postgres): actually upload wheels (#154)
---
 .github/workflows/packaging-wheels.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/packaging-wheels.yml b/.github/workflows/packaging-wheels.yml
index a4c681c..7b9ba81 100644
--- a/.github/workflows/packaging-wheels.yml
+++ b/.github/workflows/packaging-wheels.yml
@@ -77,8 +77,8 @@ jobs:
         if: github.ref == 'refs/heads/main' && (github.event.schedule || github.event.inputs.upload_wheels)
         run: |
           path=$(ls python/adbc_driver_manager/repaired_wheels/*.whl)
-          echo curl -F "package=@${path}" https://${GEMFURY_PUSH_TOKEN}@push.fury.io/arrow-adbc-nightlies/
+          curl --show-error --fail -F "package=@${path}" https://${GEMFURY_PUSH_TOKEN}@push.fury.io/arrow-adbc-nightlies/
           path=$(ls python/adbc_driver_postgres/repaired_wheels/*.whl)
-          echo curl -F "package=@${path}" https://${GEMFURY_PUSH_TOKEN}@push.fury.io/arrow-adbc-nightlies/
+          curl --show-error --fail -F "package=@${path}" https://${GEMFURY_PUSH_TOKEN}@push.fury.io/arrow-adbc-nightlies/
         env:
           GEMFURY_PUSH_TOKEN: ${{ secrets.GEMFURY_PUSH_TOKEN }}