chore: bump version to 3.3.2 #24
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - platform: windows-latest | |
| rust-targets: '' | |
| tauri-args: '' | |
| - platform: macos-latest | |
| rust-targets: 'aarch64-apple-darwin,x86_64-apple-darwin' | |
| tauri-args: '--target universal-apple-darwin' | |
| - platform: ubuntu-22.04 | |
| rust-targets: '' | |
| tauri-args: '' | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Install Rust stable | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| targets: ${{ matrix.rust-targets }} | |
| - name: Rust cache | |
| uses: swatinem/rust-cache@v2 | |
| with: | |
| workspaces: './src-tauri -> target' | |
| - name: Install Linux system dependencies | |
| if: matrix.platform == 'ubuntu-22.04' | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y \ | |
| libwebkit2gtk-4.1-dev \ | |
| libappindicator3-dev \ | |
| librsvg2-dev \ | |
| patchelf \ | |
| libxdo-dev | |
| - name: Install frontend dependencies | |
| run: npm ci | |
| - name: Build Tauri app | |
| uses: tauri-apps/tauri-action@v0 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| tagName: ${{ github.ref_name }} | |
| releaseName: 'Memory Forge ${{ github.ref_name }}' | |
| releaseBody: | | |
| ## Memory Forge ${{ github.ref_name }} | |
| ### 更新 / Changes | |
| - Codex: 兼容新的 `response_item/message` 会话结构,去重镜像消息,并在编辑时同步镜像记录。 | |
| - Codex: 识别加密 `reasoning` 记录;有明文 `content/summary` 时展示为只读思考块。 | |
| - 导出: Codex 工具调用历史按 `call_id` 合并 input/output,并避免工具记录挂到用户消息下。 | |
| - UI: 优化会话详情、列表、仪表盘、提示词、设置和关于页面的视觉与交互。 | |
| - 整理: README 使用统一 logo 资源,并归档暂缓实现的 Cursor / Trae / Windsurf 调研文档。 | |
| ### 下载 / Download | |
| | 平台 | 文件 | 说明 | | |
| |------|------|------| | |
| | Windows | `*_x64-setup.exe` | 安装包(推荐) | | |
| | Windows | `*_x64-portable.zip` | 便携版(解压即用) | | |
| | Windows | `*_x64_en-US.msi` | MSI 安装包 | | |
| | macOS | `*_universal.dmg` | 通用版(Intel + Apple Silicon) | | |
| | Linux | `*_amd64.AppImage` | 免安装,双击运行 | | |
| | Linux | `*_amd64.deb` | Debian/Ubuntu 安装包 | | |
| releaseDraft: false | |
| prerelease: false | |
| args: ${{ matrix.tauri-args }} | |
| - name: Package Windows portable zip | |
| if: matrix.platform == 'windows-latest' | |
| shell: pwsh | |
| run: | | |
| $exe = "src-tauri\target\release\memory-forge.exe" | |
| $zip = "Memory.Forge_${{ github.ref_name }}_x64-portable.zip" | |
| Compress-Archive -Path $exe -DestinationPath $zip | |
| echo "PORTABLE_ZIP=$zip" >> $env:GITHUB_ENV | |
| - name: Upload Windows portable zip to Release | |
| if: matrix.platform == 'windows-latest' | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| tag_name: ${{ github.ref_name }} | |
| files: ${{ env.PORTABLE_ZIP }} |