From c42ff6690eaa4c4eaea579a7086b31392c55558a Mon Sep 17 00:00:00 2001 From: dev4unet Date: Fri, 26 Sep 2025 05:39:28 +0000 Subject: [PATCH] Update retag-release workflow to checkout specific tag based on input, improving tag management during Docker image builds. --- .github/workflows/retag-release.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/retag-release.yaml b/.github/workflows/retag-release.yaml index 7560fc7..d372023 100644 --- a/.github/workflows/retag-release.yaml +++ b/.github/workflows/retag-release.yaml @@ -40,6 +40,7 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 # Fetch all history for proper tagging + ref: ${{ github.event.inputs.tag_name }} # Checkout specific tag - name: Validate tag format run: | @@ -95,8 +96,6 @@ jobs: type=semver,enable=true,pattern={{version}} flavor: | latest=false - tags-list: | - ${{ github.event.inputs.tag_name }} - name: Set up QEMU uses: docker/setup-qemu-action@v3