From 0a0f5afaaaecce32117c27582a701d3646075792 Mon Sep 17 00:00:00 2001 From: literat Date: Thu, 3 Oct 2024 22:22:51 +0200 Subject: [PATCH] fixup! Chore(ci): Check if branch has tag for publishing --- .github/workflows/publish.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 90513ff632..833d17601f 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -20,8 +20,9 @@ jobs: steps: - name: Clone repository uses: actions/checkout@v4 - with: - fetch-tags: true + + - name: Get tags + run: git fetch --tags origin - name: Check Tag On Commit id: checkTagExists