From 5d8ee51e8c0ff03f1b2c6b5e1ffa581715859e64 Mon Sep 17 00:00:00 2001 From: fengmk2 Date: Thu, 3 Jul 2025 11:59:23 +0800 Subject: [PATCH] chore(infra): fix canary version format (#12994) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #### PR Dependency Tree * **PR #12994** 👈 This tree was auto-generated by [Charcoal](https://github.com/danerwilliams/charcoal) ## Summary by CodeRabbit * **Chores** * Updated the timestamp format in canary version strings to remove the hyphen between hour and minute components. --- .github/actions/prepare-release/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/prepare-release/action.yml b/.github/actions/prepare-release/action.yml index c7457b4b1c..3eac38c167 100644 --- a/.github/actions/prepare-release/action.yml +++ b/.github/actions/prepare-release/action.yml @@ -21,7 +21,7 @@ runs: if [ "${{ github.ref_type }}" == "tag" ]; then APP_VERSION=$(echo "${{ github.ref_name }}" | sed 's/^v//') else - APP_VERSION=$(date '+%Y.%-m.%-d-canary.%-H%-M') + APP_VERSION=$(date '+%Y.%-m.%-d-canary.%-H%M') fi if [[ "$APP_VERSION" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then BUILD_TYPE=stable