chore(ci): add release note generation

Allows for better changelogs for apps such as dependabot and renovate.
This commit is contained in:
Simon Prochazka 2020-02-20 11:23:58 +01:00
parent 0da0687426
commit ce89263486

18
.github/workflows/release.yml vendored Normal file
View file

@ -0,0 +1,18 @@
name: Release
on:
push:
tags:
- "v*"
jobs:
release-notary:
name: Release
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v1
- name: Release Notary Action
uses: docker://outillage/release-notary
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}