From ec76c3c7c3e53454e5b42abbd43b43d88467b5db Mon Sep 17 00:00:00 2001 From: Ian Clarke Date: Wed, 6 Jul 2022 08:35:26 -0400 Subject: [PATCH] Use new package and auto-create release --- .github/workflows/version-bump.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/version-bump.yml b/.github/workflows/version-bump.yml index 88d0704c..0dca0ef4 100644 --- a/.github/workflows/version-bump.yml +++ b/.github/workflows/version-bump.yml @@ -9,8 +9,15 @@ jobs: steps: - uses: actions/checkout@master - name: Bump version and push tag - uses: hennejg/github-tag-action@v4.1.jh1 + id: tag_version + uses: mathieudutour/github-tag-action@v6.0 with: github_token: ${{ secrets.GITHUB_TOKEN }} default_bump: patch release_branches: main + - name: Create a GitHub release + uses: ncipollo/release-action@v1 + with: + tag: ${{ steps.tag_version.outputs.new_tag }} + name: Release ${{ steps.tag_version.outputs.new_tag }} + body: ${{ steps.tag_version.outputs.changelog }}