From ce89263486af28b10f5dd57b898a4084d09ecf02 Mon Sep 17 00:00:00 2001 From: Simon Prochazka Date: Thu, 20 Feb 2020 11:23:58 +0100 Subject: [PATCH] chore(ci): add release note generation Allows for better changelogs for apps such as dependabot and renovate. --- .github/workflows/release.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 000000000..a1da88d46 --- /dev/null +++ b/.github/workflows/release.yml @@ -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 }} \ No newline at end of file