Skip to content

Commit e72e930

Browse files
committed
include tag description in release
1 parent 0161ead commit e72e930

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,14 @@ jobs:
6161
cd release
6262
zip -r ../release.zip .
6363
64+
- name: Get tag description
65+
id: tag_description
66+
run: |
67+
TAG_DESC=$(git tag -l --format='%(contents)' ${{ github.ref_name }})
68+
echo "TAG_DESC<<EOF" >> $GITHUB_OUTPUT
69+
echo "$TAG_DESC" >> $GITHUB_OUTPUT
70+
echo "EOF" >> $GITHUB_OUTPUT
71+
6472
- name: Create Release
6573
uses: softprops/action-gh-release@v2
6674
with:
@@ -69,6 +77,10 @@ jobs:
6977
spreadsheet.handlebars
7078
README.md
7179
body: |
80+
Release: ${{ github.ref_name }}
81+
82+
${{ steps.tag_description.outputs.TAG_DESC }}
83+
7284
To install the Spreadsheet component:
7385
7486
Copy the spreadsheet.handlebars file to your project's 'sqlpage/templates' directory.

0 commit comments

Comments
 (0)