惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Jina AI
Jina AI
博客园 - Franky
Apple Machine Learning Research
Apple Machine Learning Research
酷 壳 – CoolShell
酷 壳 – CoolShell
阮一峰的网络日志
阮一峰的网络日志
量子位
雷峰网
雷峰网
宝玉的分享
宝玉的分享
V
Visual Studio Blog
博客园_首页
小众软件
小众软件
The Cloudflare Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
S
SegmentFault 最新的问题
博客园 - 【当耐特】
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 叶小钗
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
人人都是产品经理
人人都是产品经理
WordPress大学
WordPress大学

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
ci: forward-port release validation fixes · openclaw/open...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -126,7 +126,7 @@ jobs:

126126

uses: actions/download-artifact@v8

127127

with:

128128

name: openclaw-npm-preflight-${{ inputs.tag }}

129-

path: preflight-manifest

129+

path: ${{ runner.temp }}/openclaw-npm-preflight-manifest

130130

repository: ${{ github.repository }}

131131

run-id: ${{ inputs.preflight_run_id }}

132132

github-token: ${{ github.token }}

@@ -151,10 +151,11 @@ jobs:

151151

EXPECTED_SHA: ${{ steps.ref.outputs.sha }}

152152

run: |

153153

set -euo pipefail

154-

manifest="preflight-manifest/preflight-manifest.json"

154+

preflight_dir="${RUNNER_TEMP}/openclaw-npm-preflight-manifest"

155+

manifest="${preflight_dir}/preflight-manifest.json"

155156

if [[ ! -f "$manifest" ]]; then

156157

echo "OpenClaw npm preflight manifest is missing." >&2

157-

ls -la preflight-manifest >&2 || true

158+

ls -la "$preflight_dir" >&2 || true

158159

exit 1

159160

fi

160161

release_tag="$(jq -r '.releaseTag // ""' "$manifest")"

@@ -174,11 +175,11 @@ jobs:

174175

echo "Preflight manifest npm dist-tag mismatch: expected $RELEASE_NPM_DIST_TAG, got $npm_dist_tag" >&2

175176

exit 1

176177

fi

177-

if [[ -z "$tarball_name" || ! -f "preflight-manifest/$tarball_name" ]]; then

178+

if [[ -z "$tarball_name" || ! -f "${preflight_dir}/${tarball_name}" ]]; then

178179

echo "Preflight manifest tarball is missing: $tarball_name" >&2

179180

exit 1

180181

fi

181-

actual_tarball_sha256="$(sha256sum "preflight-manifest/$tarball_name" | awk '{print $1}')"

182+

actual_tarball_sha256="$(sha256sum "${preflight_dir}/${tarball_name}" | awk '{print $1}')"

182183

if [[ "$actual_tarball_sha256" != "$tarball_sha256" ]]; then

183184

echo "Preflight manifest tarball digest mismatch." >&2

184185

exit 1

@@ -222,6 +223,13 @@ jobs:

222223

runs-on: ubuntu-latest

223224

timeout-minutes: 60

224225

steps:

226+

- name: Checkout release SHA

227+

uses: actions/checkout@v6

228+

with:

229+

ref: ${{ needs.resolve_release_target.outputs.sha }}

230+

fetch-depth: 1

231+

persist-credentials: false

232+225233

- name: Dispatch publish workflows

226234

env:

227235

GH_TOKEN: ${{ github.token }}

@@ -336,8 +344,7 @@ jobs:

336344

changelog_file="${RUNNER_TEMP}/CHANGELOG.md"

337345

notes_file="${RUNNER_TEMP}/release-notes.md"

338346339-

gh api "repos/${GITHUB_REPOSITORY}/contents/CHANGELOG.md?ref=${TARGET_SHA}" \

340-

--jq '.content' | base64 --decode > "${changelog_file}"

347+

git show "${TARGET_SHA}:CHANGELOG.md" > "${changelog_file}"

341348

awk -v version="${notes_version}" '

342349

$0 == "## " version { in_section = 1; next }

343350

/^## / && in_section { exit }