Files
sphinx/.github/workflows/create-release.yml
Hugo van Kemenade b1381742a1 "v*.*.*" is the tag format
Co-authored-by: Takeshi KOMIYA <i.tkomiya@gmail.com>
2021-11-16 18:28:50 +02:00

19 lines
388 B
YAML

name: Create release
on:
push:
tags:
- "v*.*.*"
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
body: "Changelog: https://www.sphinx-doc.org/en/master/changes.html"