Skip to content

Commit

Permalink
1. Rename Cut Pre-Release to Create GitHub Release for Release Candidate
Browse files Browse the repository at this point in the history
2. Set environment variable GH_TOKEN in Create GitHub Release for
   Release Candidate step
  • Loading branch information
sgilmore10 committed Apr 5, 2024
1 parent 47e213a commit e619b8b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,15 @@ jobs:
- name: Install Archery
run: |
python3 -m pip install -e arrow/dev/archery[crossbow]
- name: Download MLTBX Release Candidate
- name: Download Release Candidate MLTBX
# Download the MLTBX file from the crossbow GitHub Release's area.
run: |
.arrow/dev/release/04-binary-download.sh ${ARROW_VERSION} ${ARROW_RC_NUM} --task-filter matlab
mltbx_file=$(find arrow/packages -name '*.mltbx' -type f)
echo "ARROW_MLTBX_FILE=${mltbx_file}" >> $GITHUB_ENV
- name: Cut Pre-Release
- name: Create GitHub Release for Release Candidate
# Create a pre-release in apache/arrow's GitHub Releases area.
# Attach the release candidate MLTBX file as an asset.
run: |
target_branch=release-${ARROW_VERSION_WITH_RC}
title="Apache Arrow ${ARROW_VERSION} RC${ARROW_RC_NUM}"
Expand All @@ -79,3 +81,5 @@ jobs:
--notes "${release_notes}" \
--title "${title}" \
--repo ${repository}
env:
GH_TOKEN: ${{ github.token }}

0 comments on commit e619b8b

Please sign in to comment.