File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 39
39
env :
40
40
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
41
41
PREVIOUS_TAG : ${{ env.previous_tag }}
42
+ GITHUB_REPOSITORY : ${{ github.repository }}
42
43
run : |
43
44
RELEASE_BODY=$(cat <<EOF
44
45
**Ollama Bash Lib $CURRENT_TAG**
@@ -47,7 +48,7 @@ A Bash Library for Ollama
47
48
48
49
Run LLM prompts straight from your shell, and more
49
50
50
- Repo : https://github.com/${{ github.repository }}
51
+ Repo : https://github.com/$GITHUB_REPOSITORY
51
52
EOF
52
53
)
53
54
59
60
fi
60
61
61
62
# Add link to compare with previous version
62
- RELEASE_BODY="${RELEASE_BODY}See all commits since last release : https://github.com/${{ github.repository }} /compare/${PREVIOUS_TAG}...${CURRENT_TAG}"
63
+ RELEASE_BODY="${RELEASE_BODY}See all commits since last release : https://github.com/$GITHUB_REPOSITORY /compare/${PREVIOUS_TAG}...${CURRENT_TAG}"
63
64
64
65
echo "RELEASENOTES<<EOF" >> $GITHUB_ENV
65
66
echo -e "$RELEASE_BODY" >> $GITHUB_ENV
You can’t perform that action at this time.
0 commit comments