Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,7 @@ jobs:
echo "CONVAX_FFMPEG_REQUIRE_PGP=1" >> "$GITHUB_ENV"
- name: Validate repository and tag
run: |
bun run workspaces:build:packages
bun run validate
bun run workspaces:typecheck
bun run workspaces:test
bun tooling/build-companions.mjs --tag "$GITHUB_REF_NAME"
bun run test
bun run check
bun tooling/pack.mjs --tag "$GITHUB_REF_NAME"

publish:
Expand Down
6 changes: 3 additions & 3 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/plugins/ffmpeg-tools/convax-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"id": "ffmpeg-tools",
"name": "FFmpeg Tools",
"description": "Runs reviewed local FFmpeg transforms against host-staged Canvas media without exposing native paths or a shell.",
"version": "0.3.0",
"version": "0.3.1",
"license": "MIT",
"compatibility": {
"pluginSchema": "convax.plugin/4",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/ffmpeg-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microvoid/convax-plugin-ffmpeg-tools",
"version": "0.3.0",
"version": "0.3.1",
"private": true,
"type": "module",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/ffmpeg-tools/package/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"id": "ffmpeg-tools",
"name": "FFmpeg Tools",
"description": "Runs reviewed local FFmpeg transforms against host-staged Canvas media without exposing native paths or a shell.",
"version": "0.3.0",
"version": "0.3.1",
"contributes": {
"generation": {
"models": [],
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/xiaoyunque-generation/convax-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"id": "xiaoyunque-generation",
"name": "小云雀生成",
"description": "通过宿主管理的小云雀网页授权展示服务状态,并使用小云雀第一方网页能力生成图片和视频。",
"version": "0.3.1",
"version": "0.3.2",
"license": "MIT",
"compatibility": {
"pluginSchema": "convax.plugin/3",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/xiaoyunque-generation/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microvoid/convax-plugin-xiaoyunque-generation",
"version": "0.3.1",
"version": "0.3.2",
"private": true,
"type": "module",
"dependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"id": "xiaoyunque-generation",
"name": "小云雀生成",
"description": "通过宿主管理的小云雀网页授权展示服务状态,并使用小云雀第一方网页能力生成图片和视频。",
"version": "0.3.1",
"version": "0.3.2",
"contributes": {
"generation": {
"models": [
Expand Down
2 changes: 1 addition & 1 deletion packages/skills/ffmpeg-canvas/convax-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"id": "ffmpeg-canvas",
"name": "FFmpeg Canvas",
"description": "Compose safe FFmpeg transforms for Canvas media, including paired video-only and audio-only separation outputs.",
"version": "0.3.0",
"version": "0.3.1",
"license": "MIT",
"compatibility": {
"skillSchema": "opencode.skill/1"
Expand Down
2 changes: 1 addition & 1 deletion packages/skills/ffmpeg-canvas/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microvoid/convax-skill-ffmpeg-canvas",
"version": "0.3.0",
"version": "0.3.1",
"private": true,
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion registry/config.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"sequence": 20,
"sequence": 21,
"yanked": []
}
2 changes: 1 addition & 1 deletion tooling/registry.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ describe("source packages", () => {
expect(xiaoyunque.companionAssets.map((asset) => asset.assetName)).toEqual([
"convax-companion-convax-xiaoyunque-mcp-0.3.0-darwin-arm64",
])
expect(xiaoyunque.tag).toBe("plugin-xiaoyunque-generation-v0.3.1")
expect(xiaoyunque.tag).toBe("plugin-xiaoyunque-generation-v0.3.2")
expect(await fs.readFile(xiaoyunque.companionAssets[0].path)).toEqual(xiaoyunque.companionAssets[0].data)
expect(readStoredZip(skill.zip).map((entry) => entry.relativePath)).toContain("SKILL.md")
expect(readStoredZip(ffmpeg.zip).map((entry) => entry.relativePath)).toEqual([
Expand Down