File tree Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -41,22 +41,25 @@ jobs:
4141 PREVIOUS_TAG : ${{ env.previous_tag }}
4242 GITHUB_REPOSITORY : ${{ github.repository }}
4343 run : |
44- RELEASE_BODY=$(cat <<EOF
45- **Ollama Bash Lib $CURRENT_TAG**
44+ RELEASE_BODY="**Ollama Bash Lib $CURRENT_TAG**
4645
47- A Bash Library for Ollama
46+ A Bash Library for Ollama
4847
49- Run LLM prompts straight from your shell, and more
48+ Run LLM prompts straight from your shell, and more
5049
51- Repo : https://github.com/$GITHUB_REPOSITORY
52- EOF
53- )
50+ Repo: https://github.com/$GITHUB_REPOSITORY"
5451
5552 # Generate changelog
5653 CHANGELOG=$(git log --pretty=format:"* %s (%h)" $PREVIOUS_TAG..$CURRENT_TAG)
5754
5855 if [ -n "$CHANGELOG" ]; then
59- RELEASE_BODY="${RELEASE_BODY}**Full Changelog**:\n\n${CHANGELOG}\n\n"
56+ RELEASE_BODY="${RELEASE_BODY}
57+
58+ **Full Changelog**:
59+
60+ ${CHANGELOG}
61+
62+ "
6063 fi
6164
6265 # Add link to compare with previous version
You can’t perform that action at this time.
0 commit comments