chore: bump version to v0.14.4 #38
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*' | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: 'Version to release (e.g., v0.1.0)' | |
| required: true | |
| default: 'v0.1.0' | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - platform: macos-latest | |
| target: aarch64-apple-darwin | |
| name: macOS-arm64 | |
| - platform: macos-latest | |
| target: x86_64-apple-darwin | |
| name: macOS-x64 | |
| - platform: windows-latest | |
| target: x86_64-pc-windows-msvc | |
| name: Windows-x64 | |
| - platform: ubuntu-22.04 | |
| target: x86_64-unknown-linux-gnu | |
| name: Linux-x64 | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| - name: Install Linux 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 | |
| - name: Setup Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| targets: ${{ matrix.target }} | |
| - name: Setup Rust cache | |
| uses: Swatinem/rust-cache@v2 | |
| with: | |
| workspaces: src-tauri | |
| shared-key: "rust-cache-${{ matrix.target }}" | |
| cache-on-failure: true | |
| - 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.event.inputs.version || github.ref_name }} | |
| releaseName: 'ProxyCast ${{ github.event.inputs.version || github.ref_name }}' | |
| releaseBody: | | |
| ## ProxyCast Release | |
| ### Features | |
| - AI API 代理服务 | |
| - Kiro OAuth 凭证管理 | |
| - OpenAI/Anthropic 兼容 API | |
| - 自动检测凭证文件变化 | |
| - 多 Provider 支持 | |
| ### Downloads | |
| - **macOS (Apple Silicon)**: `proxycast_*_aarch64.dmg` | |
| - **macOS (Intel)**: `proxycast_*_x64.dmg` | |
| - **Windows (64-bit)**: `proxycast_*_x64-setup.exe` | |
| - **Linux (64-bit)**: `proxycast_*_amd64.deb` / `proxycast_*_amd64.AppImage` | |
| ### macOS 首次安装 | |
| 由于应用未经 Apple 签名,首次打开可能提示「应用已损坏」,请运行: | |
| ```bash | |
| xattr -cr /Applications/proxycast.app | |
| ``` | |
| ### 默认配置 | |
| - **端口**: 3001 | |
| - **API Key**: proxycast-key | |
| releaseDraft: false | |
| prerelease: false | |
| args: --target ${{ matrix.target }} |