From 73d436e85352a627733dc1a27b74d55fb896783d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lex?= Date: Fri, 12 Jun 2026 12:53:10 +0000 Subject: [PATCH] chore(build): move release tag to include the nix hashes auto-update. (#49) --- .github/workflows/ci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e5d40ee..5781605 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1425,5 +1425,13 @@ jobs: git config user.email "$GIT_USER_EMAIL" git add circuits-nix-hashes.json git diff --cached --quiet && exit 0 - git commit -m "chore(ci): auto-update Nix hashes for ${{ env.VERSION }}" + git commit -m "chore(ci): auto-update Nix hashes for ${{ env.VERSION }} [skip ci]" git push origin main + + # [skip ci] above prevents this force-push from re-triggering the workflow. + - name: Move the release tag to include Nix hashes + env: + TAG: ${{ needs.setup.outputs.tag }} + run: | + git tag -f "$TAG" + git push origin "refs/tags/$TAG" --force