Harden CalVer workflow with set -e #31

Merged
grams777 merged 1 commit from harden-cicd into main 2026-02-22 08:24:47 +00:00
grams777 commented 2026-02-22 08:22:00 +00:00 (Migrated from github.com)

Summary

  • Added set -e to the CalVer release workflow so it exits immediately on any command failure
  • Added || true to the grep pipeline to handle the first-release-of-day case (no matching tags = grep exit code 1)

Context

Recommended as a robustness improvement from CI/CD review. Without set -e, if a command failed silently, the workflow could proceed with incorrect state.

🤖 Generated with Claude Code

## Summary - Added `set -e` to the CalVer release workflow so it exits immediately on any command failure - Added `|| true` to the grep pipeline to handle the first-release-of-day case (no matching tags = grep exit code 1) ## Context Recommended as a robustness improvement from CI/CD review. Without `set -e`, if a command failed silently, the workflow could proceed with incorrect state. 🤖 Generated with [Claude Code](https://claude.com/claude-code)
Sign in to join this conversation.
No description provided.