Skip to content

Commit

Permalink
fixing bench workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fwbrasil committed Oct 30, 2024
1 parent e764dd4 commit 9943d08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ jobs:
- name: Get commit message
id: get-commit-message
run: |
COMMIT_MESSAGE="$(git log --format=%B -n 1 ${{ github.sha }})"
echo "COMMIT_MESSAGE=${COMMIT_MESSAGE}" >> $GITHUB_ENV
COMMIT_MESSAGE=$(git log --format=%B -n 1 ${{ github.sha }} | tr '\n' ' ' | sed 's/"/\\"/g')
echo "COMMIT_MESSAGE=${COMMIT_MESSAGE}" >> "$GITHUB_ENV"
- name: Update Index
id: update-index
Expand Down

0 comments on commit 9943d08

Please sign in to comment.