chore: bump version to 0.1.10 #21
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - "review/**" | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| web-build: | |
| name: Web build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| cache: "npm" | |
| - run: npm ci | |
| - run: npm run build | |
| rust-test: | |
| name: Rust tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Linux deps (Tauri) | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y pkg-config libglib2.0-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev | |
| sudo apt-get install -y libwebkit2gtk-4.1-dev || sudo apt-get install -y libwebkit2gtk-4.0-dev | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - uses: dtolnay/rust-toolchain@stable | |
| - run: cargo test | |
| working-directory: src-tauri | |
| macos-bundle: | |
| name: macOS bundle (unsigned) | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| cache: "npm" | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - uses: dtolnay/rust-toolchain@stable | |
| - run: npm ci | |
| - run: cargo test | |
| working-directory: src-tauri | |
| - run: npm run tauri:build | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: macos-dmg | |
| path: src-tauri/target/release/bundle/dmg/*.dmg | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: macos-app | |
| path: src-tauri/target/release/bundle/macos/*.app |