ci: fix crates.io publish run (#261)

The imported workflow thinks `xtask` is a crate for some reason. `cargo
publish` seems to recognize that it is not, so I'm not sure where this
is coming from. Opting to just publish from the CLI, since we don't need
any crazy features.
This commit is contained in:
Riley Bruins 2025-12-12 22:20:22 -08:00 committed by GitHub
parent 6df9f1bc56
commit e6defd4d0a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -53,6 +53,5 @@ jobs:
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@1.88.0
- uses: katyo/publish-crates@v2
with:
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
- name: Publish to crates.io
run: cargo publish --package ts_query_ls --token ${{ secrets.CARGO_REGISTRY_TOKEN }}