chore(build): move release tag to include the nix hashes auto-update. (#49)

This commit is contained in:
Álex 2026-06-12 12:53:10 +00:00 committed by GitHub
parent 2846ee7a4c
commit 73d436e853
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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