fix: Set TCP_NODELAY (this time for real) in io-uring's TCP sockets #157
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: release-plz | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
pull-requests: write | |
contents: write | |
jobs: | |
release-plz: | |
name: Release-plz | |
runs-on: | |
- namespace-profile-linux-amd64 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup cargo cache | |
uses: namespacelabs/nscloud-cache-action@v1 | |
with: | |
path: | | |
./target | |
./target-cov | |
~/.cargo/git | |
~/.cargo/registry | |
~/.rustup | |
- name: Install Rust toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Run release-plz | |
uses: MarcoIeni/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} |