mirror of
https://github.com/lotabout/skim.git
synced 2026-09-15 17:56:32 -04:00
* feat: typo resistant matcher using frizbee from blink.cmp * chore: generate completions & manpage * fix: back to stable rustc using fork * chore: update lockfile * chore: feature gate * ci: update actions * chore: generate completions & manpage * ci: use rustup directly * ci: fix feature name --------- Co-authored-by: Skim bot <skim-bot@skim-rs.github.io>
25 lines
519 B
YAML
25 lines
519 B
YAML
name: Publish cargo crate
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
plan:
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
- run: rustup toolchain install
|
|
- name: Cache
|
|
uses: Swatinem/rust-cache@v2
|
|
- name: Login
|
|
run: cargo login ${CRATES_IO_TOKEN}
|
|
env:
|
|
CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
|
|
- name: Publish
|
|
run: cargo publish
|