mirror of
https://github.com/lukaszraczylo/claude-mnemonic.git
synced 2026-06-05 23:03:55 +00:00
5fe25e9328
ui: Vite 8, vue-tsc 3, TypeScript 6, @vitejs/plugin-vue 6, vis-network 10, vis-data 8, FontAwesome 7, @types/node 25. docs: Vite 8, plugin-vue 6. Both migrated to Tailwind CSS v4. - Tailwind v3 -> v4: @import "tailwindcss" with @theme/@config, switch to @tailwindcss/postcss, drop autoprefixer (bundled via Lightning CSS). - docs: move theme into @theme, delete tailwind.config.js, remove stale pnpm-lock.yaml (npm/package-lock.json is authoritative). - ui: TypeScript 6 removes deprecated tsconfig baseUrl; no code changes needed for vis-network 10 / FontAwesome 7. - Bump CI Node 20 -> 22 (Vite 8 requires Node ^20.19 || >=22.12). 0 npm audit vulnerabilities; ui type-check and both production builds pass.
122 lines
5.3 KiB
YAML
122 lines
5.3 KiB
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- "**.md"
|
|
- "docs/**"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
id-token: write
|
|
contents: write
|
|
packages: write
|
|
|
|
jobs:
|
|
release:
|
|
uses: lukaszraczylo/shared-actions/.github/workflows/go-release-cgo.yaml@main
|
|
with:
|
|
go-version: ">=1.24"
|
|
node-enabled: true
|
|
node-version: "22"
|
|
node-build-script: "cd ui && npm ci && npm run build"
|
|
node-cache-dependency-path: "ui/package-lock.json"
|
|
node-output-path: "ui/dist"
|
|
node-embed-path: "internal/worker/static"
|
|
lfs: false
|
|
secrets: inherit
|
|
|
|
commit-marketplace:
|
|
needs: release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: main
|
|
|
|
- name: Download checksums
|
|
run: |
|
|
VERSION="${{ needs.release.outputs.version_tag }}"
|
|
curl -sSL -o checksums.txt \
|
|
"https://github.com/lukaszraczylo/claude-mnemonic/releases/download/${VERSION}/checksums.txt"
|
|
|
|
- name: Generate marketplace.json with checksums
|
|
run: |
|
|
VERSION="${{ needs.release.outputs.version }}"
|
|
VERSION_TAG="${{ needs.release.outputs.version_tag }}"
|
|
TODAY=$(date -u +%Y-%m-%d)
|
|
|
|
# Extract checksums from checksums.txt
|
|
SHA_DARWIN_ARM64=$(grep "darwin_arm64" checksums.txt | awk '{print $1}')
|
|
SHA_LINUX_AMD64=$(grep "linux_amd64" checksums.txt | awk '{print $1}')
|
|
SHA_WINDOWS_AMD64=$(grep "windows_amd64" checksums.txt | awk '{print $1}')
|
|
|
|
# Generate marketplace.json
|
|
cat > marketplace.json << EOF
|
|
{
|
|
"\$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
|
|
"name": "claude-mnemonic",
|
|
"version": "1.0.0",
|
|
"description": "Persistent memory system for Claude Code - stores observations, session summaries, and user prompts with semantic search",
|
|
"owner": {
|
|
"name": "lukaszraczylo",
|
|
"email": "lukaszraczylo@users.noreply.github.com",
|
|
"url": "https://github.com/lukaszraczylo"
|
|
},
|
|
"repository": "https://github.com/lukaszraczylo/claude-mnemonic",
|
|
"plugins": [
|
|
{
|
|
"name": "claude-mnemonic",
|
|
"description": "Persistent memory system for Claude Code - Go implementation with SQLite and ChromaDB vector search",
|
|
"version": "${VERSION}",
|
|
"author": {
|
|
"name": "lukaszraczylo",
|
|
"url": "https://github.com/lukaszraczylo"
|
|
},
|
|
"category": "productivity",
|
|
"tags": ["memory", "persistence", "search", "context"],
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/lukaszraczylo/claude-mnemonic",
|
|
"releases": {
|
|
"latest": "${VERSION}",
|
|
"versions": {
|
|
"${VERSION}": {
|
|
"releaseDate": "${TODAY}",
|
|
"downloads": {
|
|
"darwin-arm64": {
|
|
"url": "https://github.com/lukaszraczylo/claude-mnemonic/releases/download/${VERSION_TAG}/claude-mnemonic_${VERSION}_darwin_arm64.tar.gz",
|
|
"format": "tar.gz",
|
|
"sha256": "${SHA_DARWIN_ARM64}"
|
|
},
|
|
"linux-amd64": {
|
|
"url": "https://github.com/lukaszraczylo/claude-mnemonic/releases/download/${VERSION_TAG}/claude-mnemonic_${VERSION}_linux_amd64.tar.gz",
|
|
"format": "tar.gz",
|
|
"sha256": "${SHA_LINUX_AMD64}"
|
|
},
|
|
"windows-amd64": {
|
|
"url": "https://github.com/lukaszraczylo/claude-mnemonic/releases/download/${VERSION_TAG}/claude-mnemonic_${VERSION}_windows_amd64.zip",
|
|
"format": "zip",
|
|
"sha256": "${SHA_WINDOWS_AMD64}"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
EOF
|
|
|
|
echo "Generated marketplace.json:"
|
|
cat marketplace.json
|
|
|
|
- name: Commit and push
|
|
run: |
|
|
git config user.name "github-actions[bot]"
|
|
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
git add marketplace.json
|
|
git diff --staged --quiet || git commit -m "chore: update marketplace for ${{ needs.release.outputs.version_tag }}"
|
|
git push
|