File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 3030 with :
3131 fetch-depth : 0
3232 - run : echo '' >> index.md
33+ - run : echo '# Pinecone Releases' >> index.md
34+ - name : Append Pinecone Releases
35+ run : |
36+ git clone http://github.com/matrix-org/pinecone
37+ cd pinecone && git tag -n --sort=-version:refname | while IFS=$'\n' read full_tag; do
38+ tag_name=$(echo ${full_tag} | awk '{print $1}')
39+ tag_comment=$(echo ${full_tag} | awk '{$1=""; print}')
40+ tag_link="[${tag_name}](https://github.com/matrix-org/pinecone/releases/tag/${tag_name})"
41+ echo "${tag_link} - ${tag_comment} " >> ../index.md
42+ done
3343 - run : echo '# History' >> index.md
3444 - name : Append Git History
3545 run : git log -n 15 --abbrev-commit --date=short --decorate --format=format:'%h - (%ad) %s%n' --all | sed 's/^......./[&](https:\/\/github.com\/matrix-org\/arewep2pyet\/commit\/&)/' >> index.md
You can’t perform that action at this time.
0 commit comments