diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index 2dde00a6..486fd1fc 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -13,10 +13,18 @@ jobs: with: text: ${{ github.event.head_commit.message }} regex: '^Release ([0-9]+\.[0-9]+\.[0-9]+)' - - uses: actions-ecosystem/action-push-tag@v1 - if: ${{ steps.regex-match.outputs.match != '' }} + - name: Create Release + if: steps.regex-match.outputs.match != '' + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - tag: ${{ steps.regex-match.outputs.group1 }} + tag_name: ${{ steps.regex-match.outputs.group1 }} + release_name: Release ${{ steps.regex-match.outputs.group1 }} + body: ${{ steps.regex-match.outputs.group1 }} + draft: false + prerelease: false - uses: peter-evans/repository-dispatch@v1 if: ${{ steps.regex-match.outputs.match != '' }} with: