mirror of
https://github.com/progsource/maddy.git
synced 2026-03-24 23:40:39 +01:00
Release 1.4.0
* up version to 1.4.0 * Remove deprecated code * change release message
This commit is contained in:
16
.github/workflows/create-release-package.yml
vendored
16
.github/workflows/create-release-package.yml
vendored
@@ -25,10 +25,24 @@ jobs:
|
||||
cmake -DMADDY_CREATE_PACKAGE=ON ..
|
||||
make maddy_package
|
||||
|
||||
- name: Get current tag message
|
||||
id: tag-message
|
||||
run: |
|
||||
TAG_NAME=${GITHUB_REF#refs/tags/}
|
||||
TAG_MESSAGE=$(git for-each-ref refs/tags/$TAG_NAME --format='%(contents)')
|
||||
echo "message<<EOF" >> $GITHUB_OUTPUT
|
||||
echo "$TAG_MESSAGE" >> $GITHUB_OUTPUT
|
||||
echo "EOF" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: create release
|
||||
uses: svenstaro/upload-release-action@v2
|
||||
with:
|
||||
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
file: build/maddy-src.zip
|
||||
tag: ${{ github.ref }}
|
||||
body: "You can find all changes of this release in the [changelog](https://github.com/progsource/maddy/blob/master/CHANGELOG.md)"
|
||||
body: |
|
||||
${{ steps.tag-message.outputs.message }}
|
||||
|
||||
---
|
||||
|
||||
You can find all changes of this release in the [changelog](https://github.com/progsource/maddy/blob/master/CHANGELOG.md)
|
||||
|
||||
Reference in New Issue
Block a user