Fix deprecation warning for rustix::thread::Capability #1069
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
| # Automatically generate a vendor.tar.zstd on pushes to git main. | |
| name: Auto-vendor artifact | |
| permissions: | |
| actions: read | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| vendor: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - name: Install vendor tool | |
| run: cargo install cargo-vendor-filterer | |
| - name: Run | |
| run: mkdir -p target && cd crates/cli && cargo vendor-filterer --format=tar.zstd --prefix=vendor/ ../../target/vendor.tar.zst | |
| - uses: actions/upload-artifact@v5 | |
| with: | |
| name: vendor.tar.zst | |
| path: target/vendor.tar.zst |