Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/create.release.for.tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PREVIOUS_TAG: ${{ env.previous_tag }}
GITHUB_REPOSITORY: ${{ github.repository }}
run: |
RELEASE_BODY=$(cat <<EOF
**Ollama Bash Lib $CURRENT_TAG**
Expand All @@ -47,7 +48,7 @@ A Bash Library for Ollama

Run LLM prompts straight from your shell, and more

Repo: https://github.com/${{ github.repository }}
Repo: https://github.com/$GITHUB_REPOSITORY
EOF
)

Expand All @@ -59,7 +60,7 @@ EOF
fi

# Add link to compare with previous version
RELEASE_BODY="${RELEASE_BODY}See all commits since last release: https://github.com/${{ github.repository }}/compare/${PREVIOUS_TAG}...${CURRENT_TAG}"
RELEASE_BODY="${RELEASE_BODY}See all commits since last release: https://github.com/$GITHUB_REPOSITORY/compare/${PREVIOUS_TAG}...${CURRENT_TAG}"

echo "RELEASENOTES<<EOF" >> $GITHUB_ENV
echo -e "$RELEASE_BODY" >> $GITHUB_ENV
Expand Down