We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e295ed commit 43dab40Copy full SHA for 43dab40
.github/workflows/release.yml
@@ -56,6 +56,11 @@ jobs:
56
echo "VERSION_WITH_RC=${version_with_rc}" >> ${GITHUB_ENV}
57
echo "VERSION=${version}" >> ${GITHUB_ENV}
58
echo "RC_NUM=${rc_num}" >> ${GITHUB_ENV}
59
+ - name: Download Release Candidate Artifacts
60
+ run: |
61
+ rc_tag=apache-arrow-${VERSION}-rc${RC_NUM}
62
+ mkdir release_candidate_artifacts
63
+ gh release download ${rc_tag} --dir release_candidate_artifacts
64
- name: Create Release Title
65
run: |
66
title="Apache Arrow ${VERSION}"
@@ -70,4 +75,5 @@ jobs:
70
75
gh release create ${GITHUB_REF_NAME} \
71
76
--verify-tag \
72
77
--title "${RELEASE_TITLE}" \
73
- --notes "Release Notes: ${RELEASE_NOTES}"
78
+ --notes "Release Notes: ${RELEASE_NOTES}" \
79
+ release_candidate_artifacts/*
0 commit comments