We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0161ead commit e72e930Copy full SHA for e72e930
.github/workflows/ci.yml
@@ -61,6 +61,14 @@ jobs:
61
cd release
62
zip -r ../release.zip .
63
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
+
72
- name: Create Release
73
uses: softprops/action-gh-release@v2
74
with:
@@ -69,6 +77,10 @@ jobs:
77
spreadsheet.handlebars
78
README.md
79
body: |
80
+ Release: ${{ github.ref_name }}
81
82
+ ${{ steps.tag_description.outputs.TAG_DESC }}
83
84
To install the Spreadsheet component:
85
86
Copy the spreadsheet.handlebars file to your project's 'sqlpage/templates' directory.
0 commit comments