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 11f1864  ci(docs): add nightly docs build (#189)
11f1864 is described below

commit 11f1864e608f3f228165d4510479261108a469b5
Author: David Li <[email protected]>
AuthorDate: Thu Nov 17 11:28:17 2022 -0500

    ci(docs): add nightly docs build (#189)
---
 .github/workflows/packaging-wheels.yml | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/.github/workflows/packaging-wheels.yml 
b/.github/workflows/packaging-wheels.yml
index 20be38c..19f88e5 100644
--- a/.github/workflows/packaging-wheels.yml
+++ b/.github/workflows/packaging-wheels.yml
@@ -29,6 +29,35 @@ on:
         default: false
 
 jobs:
+  docs:
+    name: "Documentation"
+    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: ${{ inputs.upload_artifacts }}"
+          echo "schedule: ${{ github.event.schedule }}"
+          echo "ref: ${{ github.ref }}"
+
+      - name: Build and test
+        shell: bash
+        run: |
+          docker-compose run docs
+
+      - name: Archive docs
+        uses: actions/upload-artifact@v3
+        with:
+          name: docs
+          retention-days: 2
+          path: |
+            docs/build/html
+
   java:
     name: "Java 1.8"
     runs-on: ubuntu-latest

Reply via email to