Skip to content

Commit eded6f2

Browse files
committedJul 8, 2020
ARROW-9167: [Website] Keep /docs/c_glib/index.html
Closes apache#65 from kou/glib-keep-index and squashes the following commits: d28fe18 <Sutou Kouhei> ARROW-9167: Keep /docs/c_glib/index.html Authored-by: Sutou Kouhei <kou@clear-code.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
1 parent 920ed7c commit eded6f2

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed
 

‎.github/workflows/deploy.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
github.repository == 'apache/arrow-site'
4545
- name: Configure for GitHub Pages on master
4646
run: |
47-
owner=$(jq .repository.owner.login ${GITHUB_EVENT_PATH})
47+
owner=$(jq --raw-output .repository.owner.login ${GITHUB_EVENT_PATH})
4848
repository=$(jq .repository.name ${GITHUB_EVENT_PATH})
4949
echo "BASE_URL=/${repository}" >> ../env.sh
5050
echo "ORIGIN=${owner}/${repository}" >> ../env.sh
@@ -92,6 +92,10 @@ jobs:
9292
--exclude '/docs/' \
9393
../build/ \
9494
./
95+
rsync \
96+
-a \
97+
../build/docs/ \
98+
docs/
9599
if [ "$(git status --porcelain)" != "" ]; then
96100
# There are changes to the built site
97101
git add --all

‎_docs/c_glib/index.md

+2
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,7 @@ Apache Arrow GLib supports [GObject Introspection][gobject-introspection]. It me
3232

3333
* [Apache Arrow GLib](arrow-glib/)
3434
* [Apache Parquet GLib](parquet-glib/)
35+
* [Gandiva GLib](gandiva-glib/)
36+
* [Plasma GLib](plasma-glib/)
3537

3638
[gobject-introspection]: https://wiki.gnome.org/action/show/Projects/GObjectIntrospection

0 commit comments

Comments
 (0)
Please sign in to comment.