Prepare v0.1.3 release #6
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*" | |
| permissions: | |
| contents: write | |
| jobs: | |
| build-windows: | |
| name: Build Windows installer | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Check source | |
| run: npm run lint | |
| - name: Build installer | |
| run: npm run pack:win | |
| - name: Publish GitHub Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| name: CodexAuth Switch ${{ github.ref_name }} | |
| body: | | |
| CodexAuth Switch release. | |
| - Windows local Codex App account switcher | |
| - DPAPI-encrypted local account snapshots | |
| - Local quota estimation by default | |
| - Optional online precise quota mode for current-account limits | |
| - Reviews, model-level quota cards, and quota pace hints | |
| - No Codex conversation history upload | |
| - The installer is not commercially code-signed, so Windows may show a security warning. | |
| files: | | |
| release/CodexAuthSwitch-Setup-*.exe | |
| release/CodexAuthSwitch-Setup-*.exe.blockmap |