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

推荐订阅源

S
SegmentFault 最新的问题
爱范儿
爱范儿
博客园 - Franky
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
IT之家
IT之家
有赞技术团队
有赞技术团队
美团技术团队
Last Week in AI
Last Week in AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Engineering at Meta
Engineering at Meta
T
Tailwind CSS Blog
J
Java Code Geeks
Martin Fowler
Martin Fowler
I
InfoQ
小众软件
小众软件
MongoDB | Blog
MongoDB | Blog

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(release): prebuild npm telegram docker image · opencla...
obviyus · 2026-04-24 · via Recent Commits to openclaw:main

@@ -59,19 +59,81 @@ jobs:

5959

PACKAGE_SPEC: ${{ inputs.package_spec }}

6060

run: echo "Approved npm Telegram beta E2E for ${PACKAGE_SPEC}"

616162+

prepare_docker_e2e_image:

63+

name: Prepare Docker E2E image

64+

needs: validate_dispatch_ref

65+

runs-on: blacksmith-32vcpu-ubuntu-2404

66+

timeout-minutes: 90

67+

permissions:

68+

contents: read

69+

packages: write

70+

outputs:

71+

image: ${{ steps.image.outputs.image }}

72+

env:

73+

DOCKER_BUILD_SUMMARY: "false"

74+

DOCKER_BUILD_RECORD_UPLOAD: "false"

75+

steps:

76+

- name: Checkout main

77+

uses: actions/checkout@v6

78+

with:

79+

ref: ${{ github.sha }}

80+

fetch-depth: 1

81+82+

- name: Resolve Docker E2E image tag

83+

id: image

84+

shell: bash

85+

env:

86+

SELECTED_SHA: ${{ github.sha }}

87+

run: |

88+

set -euo pipefail

89+

repository="${GITHUB_REPOSITORY,,}"

90+

image="ghcr.io/${repository}-docker-e2e:${SELECTED_SHA}"

91+

echo "image=$image" >> "$GITHUB_OUTPUT"

92+

echo "Docker E2E image: \`$image\`" >> "$GITHUB_STEP_SUMMARY"

93+94+

- name: Log in to GHCR

95+

uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4

96+

with:

97+

registry: ghcr.io

98+

username: ${{ github.actor }}

99+

password: ${{ github.token }}

100+101+

- name: Build and push Docker E2E image

102+

uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0

103+

with:

104+

context: .

105+

file: ./scripts/e2e/Dockerfile

106+

target: build

107+

platforms: linux/amd64

108+

cache-from: type=gha,scope=docker-e2e

109+

cache-to: type=gha,mode=max,scope=docker-e2e

110+

tags: ${{ steps.image.outputs.image }}

111+

provenance: false

112+

push: true

113+62114

run_npm_telegram_beta_e2e:

63115

name: Run published npm Telegram E2E

64-

needs: approve_release_manager

116+

needs: [approve_release_manager, prepare_docker_e2e_image]

65117

runs-on: blacksmith-32vcpu-ubuntu-2404

66118

timeout-minutes: 60

67119

environment: qa-live-shared

120+

permissions:

121+

contents: read

122+

packages: read

68123

steps:

69124

- name: Checkout main

70125

uses: actions/checkout@v6

71126

with:

72127

ref: ${{ github.sha }}

73128

fetch-depth: 1

74129130+

- name: Log in to GHCR

131+

uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4

132+

with:

133+

registry: ghcr.io

134+

username: ${{ github.actor }}

135+

password: ${{ github.token }}

136+75137

- name: Setup Node environment

76138

uses: ./.github/actions/setup-node-env

77139

with:

@@ -114,6 +176,8 @@ jobs:

114176

shell: bash

115177

env:

116178

OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

179+

OPENCLAW_SKIP_DOCKER_BUILD: "1"

180+

OPENCLAW_DOCKER_E2E_IMAGE: ${{ needs.prepare_docker_e2e_image.outputs.image }}

117181

OPENCLAW_NPM_TELEGRAM_PACKAGE_SPEC: ${{ inputs.package_spec }}

118182

OPENCLAW_NPM_TELEGRAM_PROVIDER_MODE: ${{ inputs.provider_mode }}

119183

OPENCLAW_NPM_TELEGRAM_CREDENTIAL_SOURCE: convex