From 69116aa3d2a96ce0c287bb19a48343eda82d655c Mon Sep 17 00:00:00 2001 From: Yurii Date: Thu, 21 May 2026 13:27:38 +0300 Subject: [PATCH] chore(git): fix update of `dev` tag --- .github/workflows/build.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 6f1470a..9fa57e4 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -121,6 +121,17 @@ jobs: if: ${{ github.repository_owner == 'Laxilef' && github.ref == 'refs/heads/async' }} steps: + - name: Checkout + uses: actions/checkout@v6 + with: + fetch-depth: 0 + + - name: Move dev tag + run: | + git fetch --tags + git tag -f dev + git push origin refs/tags/dev --force + - name: Download artifacts uses: actions/download-artifact@v5 with: