doc: improve the docstring of append_paged_kv_cache
(#606)
#371
This file contains 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: Automatically bump version and release Python wheels | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: googleapis/release-please-action@v4 | |
id: release | |
outputs: | |
release_created: ${{ steps.release.outputs.release_created }} | |
tag_name: ${{ steps.release.outputs.tag_name }} | |
wheel: | |
needs: release-please | |
if: ${{ needs.release-please.outputs.release_created }} | |
uses: ./.github/workflows/release_wheel.yml | |
with: | |
tag_name: ${{ needs.release-please.outputs.tag_name }} | |
secrets: inherit |