Files
kumomta/.github/workflows/make-release.yml
T
2023-08-25 08:02:14 -07:00

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