From d74e575bd776d02a36155db3822c2da910429c0c Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Tue, 25 Mar 2025 11:25:42 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix:=20Update=20tag=20retrieval?= =?UTF-8?q?=20action=20in=20release=20workflow=20#release?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/release.yaml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index be81171..6c76362 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -18,13 +18,10 @@ jobs: uses: https://github.com/crftd-tech/trunkver@main - name: Get tag - id: tag - uses: https://github.com/dawidd6/action-get-tag@v1 - with: - # Optionally strip `v` prefix - strip_v: true + uses: https://github.com/little-core-labs/get-git-tag@v3.0.1 + id: tagName - name: Use tag - run: echo ${{steps.tag.outputs.tag}} + run: echo ${{steps.tagName.outputs.tag}} - name: Create release id: create_release