mirror of
https://github.com/mailscope/kumomta.git
synced 2026-08-23 12:48:17 +00:00
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@v3
|
|
- 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
|