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:
3
.github/ISSUE_TEMPLATE/cpp-bug-report.yml
vendored
3
.github/ISSUE_TEMPLATE/cpp-bug-report.yml
vendored
@@ -37,7 +37,8 @@ body:
|
||||
label: maddy version
|
||||
description: What version of maddy are you using?
|
||||
options:
|
||||
- 1.3.0 (latest)
|
||||
- 1.4.0 (latest)
|
||||
- 1.3.0
|
||||
- 1.2.1
|
||||
- 1.2.0
|
||||
- 1.1.2
|
||||
|
||||
@@ -37,7 +37,8 @@ body:
|
||||
label: maddy version
|
||||
description: What version of maddy are you using?
|
||||
options:
|
||||
- 1.3.0 (latest)
|
||||
- 1.4.0 (latest)
|
||||
- 1.3.0
|
||||
- 1.2.1
|
||||
- 1.2.0
|
||||
- 1.1.2
|
||||
|
||||
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)
|
||||
|
||||
6
.github/workflows/run-checks.yml
vendored
6
.github/workflows/run-checks.yml
vendored
@@ -1,11 +1,13 @@
|
||||
name: run-checks
|
||||
|
||||
run-name: run-checks ${{ github.ref }}
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
|
||||
pull_request_target:
|
||||
branches:
|
||||
- master
|
||||
jobs:
|
||||
run-clang-format:
|
||||
runs-on: ubuntu-24.04
|
||||
|
||||
6
.github/workflows/run-tests.yml
vendored
6
.github/workflows/run-tests.yml
vendored
@@ -1,11 +1,13 @@
|
||||
name: run-tests
|
||||
run-name: test ${{ github.ref }}
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- dev
|
||||
pull_request:
|
||||
pull_request_target:
|
||||
branches:
|
||||
- master
|
||||
jobs:
|
||||
test-on-ubuntu:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
Reference in New Issue
Block a user