Add error handling in create and push tag

Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com>
This commit is contained in:
JB 2026-01-14 10:07:55 -05:00 committed by GitHub
parent 1cb675955b
commit 5875a49630
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -123,6 +123,9 @@ jobs:
fetch-depth: 0 fetch-depth: 0
- name: Create and push tag - name: Create and push tag
run: |
set -e # Exit on any error
next_version="${{ needs.create-release.outputs.next_version }}"
run: | run: |
next_version="${{ needs.create-release.outputs.next_version }}" next_version="${{ needs.create-release.outputs.next_version }}"