Skip to content

Commit

Permalink
Fix value
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jan 20, 2025
1 parent 4c97050 commit 81ee16f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,10 @@ jobs:
name: jni-linux-${{ matrix.platform.arch }}
path: jni-linux-${{ matrix.platform.arch }}.tar.gz
- name: Compress docs
if: env.ARROW_JAVA_BUILD_DOCS == 'docs'
if: env.ARROW_JAVA_BUILD_DOCS == 'ON'
run: tar -cvzf docs.tar.gz -C build/java docs
- name: Upload artifacts
if: env.ARROW_JAVA_BUILD_DOCS == 'docs'
if: env.ARROW_JAVA_BUILD_DOCS == 'ON'
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: release-docs-${{ matrix.platform.arch }}
Expand Down
4 changes: 3 additions & 1 deletion ci/scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ pushd "${build_dir}"

# TODO: ARROW_JAVA_SHADE_FLATBUFFERS isn't used for our artifacts. Do
# we need this?
# See also: https://github.com/apache/arrow/issues/22021
# See also:
# * https://github.com/apache/arrow/issues/22021
# * https://github.com/apache/arrow-java/issues/67
if [ "${ARROW_JAVA_SHADE_FLATBUFFERS:-OFF}" == "ON" ]; then
mvn="${mvn} -Pshade-flatbuffers"
fi
Expand Down

0 comments on commit 81ee16f

Please sign in to comment.