audio streaming app plyr.fm

fix: include alembic migrations in release change detection (#978)

The release script only checked backend/src/backend/ for changes,
missing migration-only commits that require a backend redeploy.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

authored by zzstoatzz.io

Claude Opus 4.6 and committed by
GitHub
cc9508b2 2078c501

+1 -1
+1 -1
scripts/release
··· 67 67 68 68 # check for backend changes since last release 69 69 result = subprocess.run( 70 - ["git", "log", f"{last_release}..HEAD", "--oneline", "--", "backend/src/backend/"], 70 + ["git", "log", f"{last_release}..HEAD", "--oneline", "--", "backend/src/backend/", "backend/alembic/"], 71 71 capture_output=True, 72 72 text=True, 73 73 check=True,