Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cd131697d5 | |||
| 2e3ac2cfe7 | |||
| bea22d5e9e |
46
.github/workflows/release_skill.yaml
vendored
46
.github/workflows/release_skill.yaml
vendored
@@ -30,13 +30,35 @@ jobs:
|
|||||||
import frontmatter, os, json, shutil
|
import frontmatter, os, json, shutil
|
||||||
post = frontmatter.load('SKILL.md')
|
post = frontmatter.load('SKILL.md')
|
||||||
metadata = post.metadata
|
metadata = post.metadata
|
||||||
slug = metadata['name']
|
|
||||||
version = metadata['version']
|
# slug 优先从 openclaw.slug 读取,兼容历史用 name
|
||||||
|
openclaw_meta = metadata.get('metadata', {}).get('openclaw', {})
|
||||||
|
slug = (openclaw_meta.get('slug') or metadata.get('slug') or metadata.get('name') or '').strip()
|
||||||
|
if not slug:
|
||||||
|
raise Exception('SKILL.md 缺少 slug/name,无法构建发布包')
|
||||||
|
|
||||||
|
# 以 Git Tag 为准(自动模式)
|
||||||
|
ref_name = (os.environ.get('GITHUB_REF_NAME') or '').strip()
|
||||||
|
if not ref_name:
|
||||||
|
ref_name = (os.environ.get('GITHUB_REF') or '').strip().split('/')[-1]
|
||||||
|
if not ref_name.startswith('v'):
|
||||||
|
raise Exception(f'非法标签: {ref_name},要求以 v 开头,例如 v1.0.10')
|
||||||
|
|
||||||
|
version = ref_name.lstrip('v')
|
||||||
|
|
||||||
|
# 自动模式:SKILL.md 与 tag 不一致时仅告警,不阻塞发布
|
||||||
|
skill_version = str(metadata.get('version') or '').strip()
|
||||||
|
if skill_version and skill_version != version:
|
||||||
|
print(f'WARNING: SKILL.md version({skill_version}) != tag version({version}), using tag version')
|
||||||
|
|
||||||
|
# 统一覆盖,确保后续输出与上传完全一致
|
||||||
|
metadata['version'] = version
|
||||||
|
|
||||||
# 安全写入输出
|
# 安全写入输出
|
||||||
with open(os.environ['GITHUB_OUTPUT'], 'a') as f:
|
with open(os.environ['GITHUB_OUTPUT'], 'a') as f:
|
||||||
f.write(f'slug={slug}\n')
|
f.write(f'slug={slug}\n')
|
||||||
f.write(f'version={version}\n')
|
f.write(f'version={version}\n')
|
||||||
f.write(f'metadata={json.dumps(metadata)}\n')
|
f.write(f'metadata={json.dumps(metadata, ensure_ascii=False)}\n')
|
||||||
|
|
||||||
# 制作最终的发布 ZIP 包
|
# 制作最终的发布 ZIP 包
|
||||||
shutil.make_archive(slug, 'zip', 'dist/package')
|
shutil.make_archive(slug, 'zip', 'dist/package')
|
||||||
@@ -53,7 +75,14 @@ jobs:
|
|||||||
url = 'https://jc2009.com/api/skill/update'
|
url = 'https://jc2009.com/api/skill/update'
|
||||||
res = requests.post(url, json=metadata)
|
res = requests.post(url, json=metadata)
|
||||||
print(f'DB Sync Result: {res.text}')
|
print(f'DB Sync Result: {res.text}')
|
||||||
if res.status_code != 200: exit(1)
|
if res.status_code != 200:
|
||||||
|
exit(1)
|
||||||
|
try:
|
||||||
|
payload = res.json()
|
||||||
|
except Exception:
|
||||||
|
exit(1)
|
||||||
|
if payload.get('code') != 200:
|
||||||
|
exit(1)
|
||||||
"
|
"
|
||||||
|
|
||||||
# 6. 上传物理包
|
# 6. 上传物理包
|
||||||
@@ -71,5 +100,12 @@ jobs:
|
|||||||
with open(f'{slug}.zip', 'rb') as f:
|
with open(f'{slug}.zip', 'rb') as f:
|
||||||
res = requests.post(url, data=payload, files={'file': f})
|
res = requests.post(url, data=payload, files={'file': f})
|
||||||
print(f'Upload Result: {res.text}')
|
print(f'Upload Result: {res.text}')
|
||||||
if res.status_code != 200: exit(1)
|
if res.status_code != 200:
|
||||||
|
exit(1)
|
||||||
|
try:
|
||||||
|
payload = res.json()
|
||||||
|
except Exception:
|
||||||
|
exit(1)
|
||||||
|
if payload.get('code') != 200:
|
||||||
|
exit(1)
|
||||||
"
|
"
|
||||||
5
SKILL.md
5
SKILL.md
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
name: account-manager
|
name: 账号管理
|
||||||
description: 多平台多账号管理。管理各平台账号与Chrome Profile的对应关系,供publisher类Skill调用获取账号信息。
|
description: 多平台多账号管理。管理各平台账号与Chrome Profile的对应关系,供publisher类Skill调用获取账号信息。
|
||||||
version: 1.0.1
|
version: 1.0.1
|
||||||
author: 深圳匠厂科技有限公司
|
author: 深圳匠厂科技有限公司
|
||||||
metadata:
|
metadata:
|
||||||
openclaw:
|
openclaw:
|
||||||
|
slug: account-manager
|
||||||
emoji: "👤"
|
emoji: "👤"
|
||||||
category: "通用"
|
category: "通用"
|
||||||
skill_type: 1
|
skill_type: 1
|
||||||
@@ -14,7 +15,7 @@ allowed-tools:
|
|||||||
- bash
|
- bash
|
||||||
---
|
---
|
||||||
|
|
||||||
# 账号管理器
|
# 账号管理
|
||||||
|
|
||||||
## 使用时机
|
## 使用时机
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user