Skip to content

Commit

Permalink
Fix if condition. (#2286)
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeMathWalker authored Feb 2, 2023
1 parent 2682708 commit 649f758
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:
SEMANTIC_VERSION: ${{ inputs.semantic_version }}
DRY_RUN: ${{ inputs.dry_run }}
run: |
if [[ git diff-index --quiet HEAD ]]; then
if git diff-index --quiet HEAD; then
# The file was actually changed, we need to commit and push the changes
git commit gradle.properties --message "Upgrade the smithy-rs runtime crates version to ${SEMANTIC_VERSION}"
echo "Pushing upgraded gradle.properties commit..."
Expand Down

0 comments on commit 649f758

Please sign in to comment.