File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -79,12 +79,18 @@ jobs:
79
79
run_id : ${{ github.run_id }}
80
80
env :
81
81
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
82
+ - id : extract_major_version
83
+ run : |
84
+ MAJOR_VERSION=$(echo ${{ needs.checkver.outputs.new_version }} | cut -d. -f1)
85
+ echo "major_version=$MAJOR_VERSION" >> $GITHUB_OUTPUT
82
86
83
87
- uses : softprops/action-gh-release@v1
84
88
with :
85
- files : |
86
- *.zip
87
- body : Built with GitHub Actions at ${{ fromJson(steps.get_workflow_runtime.outputs.data).updated_at }}
89
+ files : ' *.zip'
90
+ body : |
91
+ Built with GitHub Actions at ${{ fromJson(steps.get_workflow_runtime.outputs.data).updated_at }}
92
+
93
+ Release notes can be found [here](http://greenwoodsoftware.com/less/news.${{ steps.extract_major_version.outputs.major_version }}.html).
88
94
tag_name : less-v${{ needs.checkver.outputs.new_version }}
89
95
env :
90
96
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments