From 2cbd5d69feba0f7a862abcbd2ef262c8a1fc6f20 Mon Sep 17 00:00:00 2001 From: "guokexin.02" <264159873+Tantanz20020918@users.noreply.github.com> Date: Wed, 29 Jul 2026 11:39:28 +0800 Subject: [PATCH] test: restore release checks after beta rehearsal --- .github/workflows/release.yml | 3 +-- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e961c4385..cc2fb86de 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -48,8 +48,7 @@ jobs: head_sha="$(git rev-parse --verify 'HEAD^{commit}')" tag_sha="$(git rev-parse --verify "refs/tags/${TAG}^{commit}")" [[ "$tag_sha" == "$head_sha" ]] || { echo "Tag ${TAG} does not resolve to checked-out HEAD." >&2; exit 1; } - # Temporarily disabled for the v1.0.78-beta.14 release rehearsal. - # git merge-base --is-ancestor "$head_sha" FETCH_HEAD || { echo "Tag ${TAG} is not contained in origin/main." >&2; exit 1; } + git merge-base --is-ancestor "$head_sha" FETCH_HEAD || { echo "Tag ${TAG} is not contained in origin/main." >&2; exit 1; } node - "$preflight_file" "$head_sha" "$GITHUB_OUTPUT" <<'NODE' const fs = require("node:fs"); diff --git a/package-lock.json b/package-lock.json index 29079e066..7d72cf38f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@larksuite/cli", - "version": "1.0.78-beta.14", + "version": "1.0.78", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@larksuite/cli", - "version": "1.0.78-beta.14", + "version": "1.0.78", "cpu": [ "x64", "arm64", diff --git a/package.json b/package.json index 9daf17332..dadb6ca67 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@larksuite/cli", - "version": "1.0.78-beta.14", + "version": "1.0.78", "description": "The official CLI for Lark/Feishu open platform", "bin": { "lark-cli": "scripts/run.js"