Unverified Commit 649f7586 authored by Luca Palmieri's avatar Luca Palmieri Committed by GitHub
Browse files

Fix if condition. (#2286)

parent 2682708e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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..."