You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by qu...@apache.org on 2023/06/13 15:55:13 UTC

[arrow-julia] 01/01: Try to fix docs by publishing to apache infra

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

quinnj pushed a commit to branch jq-docs
in repository https://gitbox.apache.org/repos/asf/arrow-julia.git

commit 3b1da13237286caafbf832b0e8241b543477f923
Author: Jacob Quinn <qu...@gmail.com>
AuthorDate: Tue Jun 13 09:54:46 2023 -0600

    Try to fix docs by publishing to apache infra
    
    Implements @kou's suggestion in
    https://github.com/apache/arrow-julia/issues/463#issuecomment-1588454604.
---
 .asf.yaml    | 6 ++++++
 README.md    | 2 +-
 docs/make.jl | 3 ++-
 3 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index 8dd86ae..25ad345 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -38,3 +38,9 @@ github:
   protected_branches:
     main:
       required_linear_history: true
+
+# publishes the content of the `asf-site` branch to
+# https://arrow.apache.org/julia/
+publish:
+  whoami: asf-site
+  subdir: julia
\ No newline at end of file
diff --git a/README.md b/README.md
index b20fc70..3f782d0 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@
 
 # Arrow
 
-[![docs](https://img.shields.io/badge/docs-latest-blue&logo=julia)](https://apache.github.io/arrow-julia/dev/)
+[![docs](https://img.shields.io/badge/docs-latest-blue&logo=julia)](https://arrow.apache.org/julia/dev/)
 [![CI](https://github.com/apache/arrow-julia/workflows/CI/badge.svg)](https://github.com/apache/arrow-julia/actions?query=workflow%3ACI)
 [![codecov](https://app.codecov.io/gh/apache/arrow-julia/branch/main/graph/badge.svg)](https://app.codecov.io/gh/apache/arrow-julia)
 
diff --git a/docs/make.jl b/docs/make.jl
index 25b298e..fb74460 100644
--- a/docs/make.jl
+++ b/docs/make.jl
@@ -37,5 +37,6 @@ makedocs(;
 
 deploydocs(;
     repo="github.com/apache/arrow-julia",
-    devbranch = "main"
+    devbranch = "main",
+    branch = "asf-site"
 )