diff --git a/.github/actions/github-release/action.yaml b/.github/actions/github-release/action.yaml index b1e20658e..5e3883160 100644 --- a/.github/actions/github-release/action.yaml +++ b/.github/actions/github-release/action.yaml @@ -28,7 +28,7 @@ runs: shell: bash id: release-notes run: | - notes=$(git log "${{steps.get-previous-tag.outputs.previous-tag }}..HEAD" --pretty=format:"%s" --no-merges) + notes=$(git log "${{ steps.get-previous-tag.outputs.previous-tag }}..HEAD" --pretty=format:"%s" --no-merges) # GitHub Actions requires that multiline output is escaped: notes="${notes//'%'/'%25'}"