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:
41
41
PREVIOUS_TAG : ${{ env.previous_tag }}
42
42
GITHUB_REPOSITORY : ${{ github.repository }}
43
43
run : |
44
- RELEASE_BODY=$(cat <<EOF
45
- **Ollama Bash Lib $CURRENT_TAG**
44
+ RELEASE_BODY="**Ollama Bash Lib $CURRENT_TAG**
46
45
47
- A Bash Library for Ollama
46
+ A Bash Library for Ollama
48
47
49
- Run LLM prompts straight from your shell, and more
48
+ Run LLM prompts straight from your shell, and more
50
49
51
- Repo : https://github.com/$GITHUB_REPOSITORY
52
- EOF
53
- )
50
+ Repo: https://github.com/$GITHUB_REPOSITORY"
54
51
55
52
# Generate changelog
56
53
CHANGELOG=$(git log --pretty=format:"* %s (%h)" $PREVIOUS_TAG..$CURRENT_TAG)
57
54
58
55
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
+ "
60
63
fi
61
64
62
65
# Add link to compare with previous version
You can’t perform that action at this time.
0 commit comments