From 330fadd1d74aedb9f85700e54db84d698efb03d6 Mon Sep 17 00:00:00 2001 From: Leonardo Matos Date: Sun, 21 Jun 2020 05:21:00 -0300 Subject: [PATCH] ci(create-release): setup workflow to create github release (#3930) Create GitHub release after each new version tag to properly support GitHub _watch releases only feature --- .github/workflows/create-release.yml | 34 ++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/create-release.yml diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml new file mode 100644 index 00000000..3aa7545f --- /dev/null +++ b/.github/workflows/create-release.yml @@ -0,0 +1,34 @@ +name: Create release + +on: + push: + tags: + - 'netlify-cms@*' + +jobs: + create-release: + name: Create GitHub Release + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Get semver number + id: get_semver + env: + TAG_NAME: ${{ github.ref }} + run: echo "::set-output name=pkg::${TAG_NAME:10}" + + - name: Create release on GitHub API + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.ref }} + release_name: ${{ steps.get_semver.outputs.pkg }} + body: | + :scroll: [Changelog](https://github.com/${{ github.repository }}/blob/${{ steps.get_semver.outputs.pkg }}/CHANGELOG.md) + draft: false + prerelease: false