Skip to content

Commit

Permalink
ci: fix typo in getting release version string
Browse files Browse the repository at this point in the history
  • Loading branch information
ae9is committed Apr 28, 2024
1 parent fefded0 commit 28358c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
env:
MESSAGE: ${{ github.event.head_commit.message }}
run: |
VALUE=$(echo '$MESSAGE' | sed 's/release://' | sed 's/[[:space:]]*//g')
VALUE=$(echo "${MESSAGE}" | sed 's/release://' | sed 's/[[:space:]]*//g')
echo "value=${VALUE}" >> $GITHUB_OUTPUT
- name: Commit /docs
Expand Down

0 comments on commit 28358c6

Please sign in to comment.