Skip to content

Commit

Permalink
Needed quotes since event could be null.
Browse files Browse the repository at this point in the history
  • Loading branch information
arrowplum authored Jan 15, 2025
1 parent 0b5bd6b commit 40079cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create-prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
# Check if it's a snapshot
if [[ "$VERSION" == *-SNAPSHOT-* ]]; then
SNAPSHOT="true"
elif [[ ${{ inputs.preRelease }} == true ]]; then
elif [[ "${{ inputs.preRelease }}" == true ]]; then
SNAPSHOT="true"
COMMIT=$(git rev-parse --short HEAD)
VERSION="${VERSION}-SNAPSHOT-${COMMIT}"
Expand Down Expand Up @@ -511,4 +511,4 @@ jobs:
"${{ env.JFROG_CLI_BUILD_NAME }}" "${{ needs.build.outputs.version }}"\
--project ecosystem \
--spec release-bundle-spec.json \
--signing-key aerospike --sync
--signing-key aerospike --sync

0 comments on commit 40079cc

Please sign in to comment.