Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: apache/arrow-adbc
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b4b7e797bdcc8a871bf272645c29748f71cdad26
Choose a base ref
..
head repository: apache/arrow-adbc
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 07b31400e4327515f29469f22b37ff2799832245
Choose a head ref
Showing with 5 additions and 2 deletions.
  1. +5 −2 .github/workflows/packaging-wheels.yml
7 changes: 5 additions & 2 deletions .github/workflows/packaging-wheels.yml
Original file line number Diff line number Diff line change
@@ -70,6 +70,9 @@ jobs:
if: github.ref == 'main' && (github.event.schedule || inputs.upload_wheels)
run: |
path=$(ls python/adbc_driver_manager/repaired_wheels/*.whl)
echo curl -F "package=@${path}" https://push.fury.io//
echo curl -F "package=@${path}" https://${CROSSBOW_GEMFURY_TOKEN}@push.fury.io/${CROSSBOW_GEMFURY_ORG}/
path=$(ls python/adbc_driver_postgres/repaired_wheels/*.whl)
echo curl -F "package=@${path}" https://push.fury.io//
echo curl -F "package=@${path}" https://${CROSSBOW_GEMFURY_TOKEN}@push.fury.io/${CROSSBOW_GEMFURY_ORG}/
env:
CROSSBOW_GEMFURY_TOKEN: ${{ secrets.CROSSBOW_GEMFURY_TOKEN }}
CROSSBOW_GEMFURY_ORG: ${{ secrets.CROSSBOW_GEMFURY_ORG }}