fix(release): follow release-note filename convention

This commit is contained in:
haelyra
2026-08-24 21:09:46 -04:00
parent 7d9f70c501
commit c83200bbbe
3 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -99,7 +99,7 @@ jobs:
RELEASE_TAG: ${{ github.ref_name }}
run: |
RELEASE_VERSION="${RELEASE_TAG#v}"
RELEASE_NOTES="docs/releases/${RELEASE_VERSION}/RELEASE_NOTES.md"
RELEASE_NOTES="docs/releases/${RELEASE_VERSION}/release-notes.md"
if [ ! -f "$RELEASE_NOTES" ]; then
echo "::error::Missing reviewed release notes for ${RELEASE_VERSION}: ${RELEASE_NOTES}"
exit 1
+1 -1
View File
@@ -123,7 +123,7 @@ jobs:
RELEASE_TAG: ${{ inputs.tag }}
run: |
RELEASE_VERSION="${RELEASE_TAG#v}"
RELEASE_NOTES="docs/releases/${RELEASE_VERSION}/RELEASE_NOTES.md"
RELEASE_NOTES="docs/releases/${RELEASE_VERSION}/release-notes.md"
if [ ! -f "$RELEASE_NOTES" ]; then
echo "::error::Missing reviewed release notes for ${RELEASE_VERSION}: ${RELEASE_NOTES}"
exit 1