mirror of
https://github.com/mailscope/kumomta.git
synced 2026-08-26 06:08:18 +00:00
63cde9c720
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
24 lines
562 B
YAML
24 lines
562 B
YAML
name: Make Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "20*"
|
|
|
|
jobs:
|
|
make-release:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Generate Changelog
|
|
run: echo "See https://docs.kumomta.com/changelog/${{ github.ref_name }}" > ${{ github.workspace }}-CHANGELOG.txt
|
|
- name: Make Release
|
|
uses: softprops/action-gh-release@v1
|
|
with:
|
|
body_path: ${{ github.workspace }}-CHANGELOG.txt
|
|
prerelease: true
|
|
draft: true
|