Skip to content

Commit 254a85c

Browse files
committed
GH-47063: [Release] Define missing RELEASE_TARBALL (#47064)
### Rationale for this change `RELEASE_TARBALL` is registered to `GITHUB_ENV` but isn't defined in this context. ### What changes are included in this PR? Define `RELEASE_TARBARLL`. ### Are these changes tested? No. ### Are there any user-facing changes? No. * GitHub Issue: #47063 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
1 parent 71c6a39 commit 254a85c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/release_candidate.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,9 @@ jobs:
8989
"dev/release/utils-create-release-tarball.sh ${VERSION} ${RC_NUM}" \
9090
apache-arrow-${VERSION}.tar.gz
9191
dev/release/utils-create-release-tarball.sh ${VERSION} ${RC_NUM}
92-
echo "RELEASE_TARBALL=apache-arrow-${VERSION}.tar.gz" >> ${GITHUB_ENV}
93-
dev/release/utils-generate-checksum.sh "apache-arrow-${VERSION}.tar.gz"
92+
RELEASE_TARBALL=apache-arrow-${VERSION}.tar.gz
93+
echo "RELEASE_TARBALL=${RELEASE_TARBALL}" >> ${GITHUB_ENV}
94+
dev/release/utils-generate-checksum.sh "${RELEASE_TARBALL}"
9495
if [ -n "${ARROW_GPG_SECRET_KEY}" ]; then
9596
echo "${ARROW_GPG_SECRET_KEY}" | gpg --import
9697
gpg \

0 commit comments

Comments
 (0)