From 760ad465f3c90f4b8f3648cbb099b0ad4cea3b36 Mon Sep 17 00:00:00 2001 From: Emotion Date: Mon, 25 Jul 2022 01:41:15 +1200 Subject: [PATCH] Create release.yml --- .github/workflows/release.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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..16d0377 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,20 @@ +name: Release from Changelog + +# Controls when the action will run. Workflow runs when manually triggered using the UI +# or API. + +on: + push: + tags: + - "v*" + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + release_version: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Generate GitHub Release + uses: lsegal/github-release-from-changelog-action@latest + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}