From 9de53520d742d6f6277dd18fed1d96eed55cd1de Mon Sep 17 00:00:00 2001 From: Mathieu <40839921+Mideky-hub@users.noreply.github.com> Date: Tue, 19 Nov 2024 22:00:27 +0100 Subject: [PATCH] fix(workflow): versioning --- .github/workflows/versioning.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/versioning.yml b/.github/workflows/versioning.yml index 6b3a39e..ba54afc 100644 --- a/.github/workflows/versioning.yml +++ b/.github/workflows/versioning.yml @@ -7,8 +7,15 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@master + - uses: actions/checkout@v4 - name: Bump version and push tag - uses: hennejg/github-tag-action@v4.1.jh1 + id: tag_version + uses: mathieudutour/github-tag-action@v6.2 with: github_token: ${{ secrets.GITHUB_TOKEN }} + - 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 }}