lidavidm commented on code in PR #179:
URL: https://github.com/apache/arrow-adbc/pull/179#discussion_r1022968688


##########
.github/workflows/packaging-wheels.yml:
##########
@@ -196,3 +196,46 @@ jobs:
           ./ci/scripts/python_wheel_upload.sh 
python/adbc_driver_{manager,postgres}/dist/*.whl
         env:
           GEMFURY_PUSH_TOKEN: ${{ secrets.GEMFURY_PUSH_TOKEN }}
+
+  python-sdist:
+    name: "Python sdist"
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@v3
+        with:
+          fetch-depth: 0
+          persist-credentials: false
+
+      - name: Show inputs
+        shell: bash
+        run: |
+          echo "upload_artifacts: ${{ github.event.inputs.upload_artifacts }}"
+          echo "schedule: ${{ github.event.schedule }}"
+          echo "ref: ${{ github.ref }}"
+
+      - name: Build sdist
+        shell: bash
+        run: |
+          docker-compose run python-sdist
+
+      - name: Archive sdist
+        uses: actions/upload-artifact@v3
+        with:
+          name: python${{ matrix.python_version }}-manylinux${{ 
matrix.manylinux_version }}
+          retention-days: 7
+          path: |
+            python/adbc_driver_manager/dist/*.tar.gz
+            python/adbc_driver_postgres/dist/*.whl

Review Comment:
   D'oh. Thanks!



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to