Skip to content

Commit

Permalink
Create GitHub release from tag
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Nov 12, 2021
1 parent cee8690 commit f8815eb
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Create release

on:
push:
tags:
- '*'

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"

0 comments on commit f8815eb

Please sign in to comment.