From bd1254785589920f3bedd1a072bd315b3302ca78 Mon Sep 17 00:00:00 2001 From: Alex Viscreanu Date: Sun, 16 Feb 2020 23:10:52 +0100 Subject: [PATCH] feat(ci): Add release notary GitHub action --- .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 0000000..1235def --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,18 @@ +name: Release +on: + push: + tags: + - "v*" + +jobs: + release-notes: + name: Release Notes + runs-on: ubuntu-latest + steps: + - name: Check out code + uses: actions/checkout@v1 + + - name: Release Notary Action + uses: docker://commitsar/release-notary + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}