chore(deps): update rmcp types for v0.16 API compatibility (#1410) #630
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: "Build & Release" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| run-ci: | |
| permissions: | |
| checks: write | |
| uses: ./.github/workflows/ci.yaml | |
| secrets: inherit | |
| release-plz: | |
| name: Release-plz | |
| needs: run-ci | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| contents: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install Rust toolchain | |
| uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| toolchain: ${{ vars.RUST_VERSION }} | |
| cache: true | |
| # Required to compile rig-lancedb | |
| - name: Install Protoc | |
| uses: arduino/setup-protoc@v3 | |
| - name: Run release-plz | |
| uses: MarcoIeni/release-plz-action@v0.5 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} |