From fc60252321d151c94c0d1b4ac7993fef8a768b78 Mon Sep 17 00:00:00 2001 From: soyuka Date: Fri, 4 Nov 2022 17:17:13 +0100 Subject: [PATCH] ci: add automatic release notes --- .github/workflows/tagged-release.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/tagged-release.yml diff --git a/.github/workflows/tagged-release.yml b/.github/workflows/tagged-release.yml new file mode 100644 index 00000000000..06b836b6de5 --- /dev/null +++ b/.github/workflows/tagged-release.yml @@ -0,0 +1,24 @@ +--- +name: "tagged-release" + +on: + push: + tags: + - "v*" + +jobs: + gh_tagged_release: + runs-on: "ubuntu-latest" + + steps: + - name: "Checkout source code" + uses: "actions/checkout@v2.3.4" + with: + lfs: true + fetch-depth: 0 + + - uses: "marvinpinto/action-automatic-releases@latest" + with: + repo_token: "${{ secrets.GITHUB_TOKEN }}" + prerelease: false + id: "automatic_releases"