From 44487997b923bf6574b5376f1dbea94563930f83 Mon Sep 17 00:00:00 2001 From: dexhorthy Date: Mon, 11 Aug 2025 17:44:45 -0500 Subject: [PATCH] Fix nightly release version format Remove "-test" suffix from nightly version to ensure release notes correctly show "codelayer-nightly" in installation instructions. The conditional expression in release notes was already correct, but the version format included an extra "-test" suffix causing the condition to match incorrectly. --- .github/workflows/release-macos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-macos.yml b/.github/workflows/release-macos.yml index a8fd618..656b613 100644 --- a/.github/workflows/release-macos.yml +++ b/.github/workflows/release-macos.yml @@ -29,7 +29,7 @@ jobs: run: | if [ "${{ github.event_name }}" = "schedule" ] || [ "${{ github.event.inputs.release_nightly }}" = "true" ]; then # For cron/scheduled runs or test mode, use YYYYMMDD-nightly format - echo "release_version=$(date +%Y%m%d)-nightly-test" >> $GITHUB_OUTPUT + echo "release_version=$(date +%Y%m%d)-nightly" >> $GITHUB_OUTPUT elif [ -z "${{ github.event.inputs.release_version }}" ]; then # For manual runs without specified version, use YYYYMMDD_HHmmss echo "release_version=$(date +%Y%m%d_%H%M%S)" >> $GITHUB_OUTPUT