Skip to content

Commit

Permalink
build: Add input for RC version to release workflow (#789)
Browse files Browse the repository at this point in the history
* Add input for RC version to release workflow

* Address feedback
  • Loading branch information
jperedadnr authored Oct 30, 2024
1 parent 255053b commit 77b10fc
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
options:
- RC
- GA
rc_version:
type: string
default: ''
description: 'If candidate is RC, set a version like RC1 or RC2, else leave it empty'

env:
JAVA_RELEASE: '23'
Expand Down Expand Up @@ -53,7 +57,11 @@ jobs:
S3_PATH=$PROJECT_VERSION
CANDIDATE=${{ github.event.inputs.candidate }}
if [[ "$CANDIDATE" == RC ]]; then
PROJECT_VERSION=${PROJECT_VERSION}-RC
RC_VERSION = ${{ github.event.inputs.rc_version }}
if [[ "$RC_VERSION" == "" ]]; then
RC_VERSION = "RC"
fi
PROJECT_VERSION=${PROJECT_VERSION}-${RC_VERSION}
S3_PATH=RC/$PROJECT_VERSION
fi
echo "Releasing.. "$PROJECT_VERSION
Expand Down

0 comments on commit 77b10fc

Please sign in to comment.