Skip to content

Commit

Permalink
CI: Properly terminate sed substitute script
Browse files Browse the repository at this point in the history
  • Loading branch information
YuriSizov committed Jun 3, 2024
1 parent 9956eab commit dd6e9ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/make-release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ runs:
- name: Prepare release notes for this release
shell: bash
run: |
sed -i 's/\$\{COMMIT_HASH\}/${{ github.sha }}' $GITHUB_ACTION_PATH/release-notes.md
sed -i 's/\$\{VERSION_TAG\}/${{ inputs.release-version }}' $GITHUB_ACTION_PATH/release-notes.md
sed -i 's/\$\{COMMIT_HASH\}/${{ github.sha }}/' $GITHUB_ACTION_PATH/release-notes.md
sed -i 's/\$\{VERSION_TAG\}/${{ inputs.release-version }}/' $GITHUB_ACTION_PATH/release-notes.md
- name: Create a draft release with custom release notes
shell: bash
Expand Down

0 comments on commit dd6e9ba

Please sign in to comment.