Add generic Claw skill-template (manifest, CLI, docs, optional snippets)
Made-with: Cursor
This commit is contained in:
27
.github/workflows/release_skill.yaml
vendored
Normal file
27
.github/workflows/release_skill.yaml
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
# -----------------------------------------------------------------------------
|
||||
# 技能发布工作流(占位)
|
||||
# -----------------------------------------------------------------------------
|
||||
# 不同组织使用不同的复用工作流、制品格式与加密策略。
|
||||
# 使用本模板时,请将下面 jobs 整段替换为你们自己的 workflow,
|
||||
# 或删除本文件若暂不需要 GitHub Actions。
|
||||
#
|
||||
# 设计原则(行业常见):
|
||||
# - 通过 tag 触发发布(如 v*)
|
||||
# - 制品与版本号可追溯,与 SKILL.md 中 version 对齐
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
name: skill-release-placeholder
|
||||
|
||||
on:
|
||||
push:
|
||||
tags: ["v*"]
|
||||
|
||||
jobs:
|
||||
release:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Placeholder
|
||||
run: |
|
||||
echo "Replace this workflow with your organization's reusable workflow."
|
||||
echo "Example pattern: jobs.release.uses: <org>/<kit>/.github/workflows/reusable-release-skill.yaml@ref"
|
||||
exit 0
|
||||
Reference in New Issue
Block a user