From c4b695661735a39cac306ec0234b4b578058aba7 Mon Sep 17 00:00:00 2001 From: Alex Rodionov Date: Mon, 20 May 2024 13:44:06 -0700 Subject: [PATCH] Fix release workflow tag creation --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ddc344d..2f15532 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,6 +30,8 @@ jobs: git config user.email github-actions@github.com - run: git commit -am "Release ${{ inputs.tag }}" - run: git push + - run: git tag -a ${{ inputs.tag }} -m "Release ${{ inputs.tag }}" + - run: git push --tags - run: gh release create ${{ inputs.tag }} --generate-notes env: GH_TOKEN: ${{ github.token }}