Skip to content

Commit

Permalink
Hotfix: message format
Browse files Browse the repository at this point in the history
  • Loading branch information
levisingularity committed May 7, 2024
1 parent eee1d2b commit 331e55a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-semver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,13 @@ jobs:

- name: Create mattermost message
run: |
title="New version of ${{ inputs.library }}"
title="${{ inputs.title }}"
deliverable="${{ inputs.deliverable }}"
version="${{ needs.tag.outputs.version }}"
repository="${{ needs.tag.outputs.repository }}"
releaseNote=${{ needs.tag.outputs.release-note }}
message="${title}\n\nDeliverable:${deliverable}New version available: $version\nRepository: https://github.com/$repository/releases/tag/$version"
message="${title}\n\nDeliverable:${deliverable}\nNew version available: $version\nRepository: https://github.com/$repository/releases/tag/$version"
if [ -n "$releaseNote" ]; then
message="$message\nChanges:\n$releaseNote"
Expand Down

0 comments on commit 331e55a

Please sign in to comment.