mirror of
https://github.com/str4d/rage.git
synced 2025-04-03 19:07:42 +03:00
Include completion files in Debian package
Elvish not included because I can't find a documented system path that packages can install completion files in.
This commit is contained in:
parent
5fab4f1869
commit
ef9071a93a
4 changed files with 17 additions and 0 deletions
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
|
@ -169,6 +169,12 @@ jobs:
|
|||
run: cargo build --release --locked --target ${{ matrix.target }} ${{ matrix.build_flags }}
|
||||
working-directory: ./rage
|
||||
|
||||
- name: Generate completions
|
||||
uses: actions-rs/cargo@v1
|
||||
with:
|
||||
command: run
|
||||
args: --example generate-completions
|
||||
|
||||
- name: Generate manpages
|
||||
uses: actions-rs/cargo@v1
|
||||
with:
|
||||
|
|
|
@ -9,6 +9,7 @@ cargo install cargo-deb
|
|||
## Process
|
||||
|
||||
```
|
||||
cargo run --example generate-completions
|
||||
cargo run --example generate-docs
|
||||
cargo deb --package rage
|
||||
```
|
||||
|
|
|
@ -15,6 +15,7 @@ to 1.0.0 are beta releases.
|
|||
- `-V / --version` flags to all binaries.
|
||||
- Completion files for Bash, Elvish, Fish, PowerShell, and Zsh can be generated
|
||||
with `cargo run --example generate-completions`.
|
||||
- The Debian package will install completion files for Bash, Fish, and Zsh.
|
||||
|
||||
### Changed
|
||||
- If a `pinentry` binary is available, it will be used preferentially to request
|
||||
|
|
|
@ -22,6 +22,15 @@ assets = [
|
|||
["target/release/rage", "usr/bin/", "755"],
|
||||
["target/release/rage-keygen", "usr/bin/", "755"],
|
||||
["target/release/rage-mount", "usr/bin/", "755"],
|
||||
["../target/completions/rage.bash", "usr/share/bash-completion/completions/", "644"],
|
||||
["../target/completions/rage-keygen.bash", "usr/share/bash-completion/completions/", "644"],
|
||||
["../target/completions/rage-mount.bash", "usr/share/bash-completion/completions/", "644"],
|
||||
["../target/completions/rage.fish", "usr/share/fish/completions/", "644"],
|
||||
["../target/completions/rage-keygen.fish", "usr/share/fish/completions/", "644"],
|
||||
["../target/completions/rage-mount.fish", "usr/share/fish/completions/", "644"],
|
||||
["../target/completions/rage.zsh", "usr/share/zsh/functions/Completion/Debian/", "644"],
|
||||
["../target/completions/rage-keygen.zsh", "usr/share/zsh/functions/Completion/Debian/", "644"],
|
||||
["../target/completions/rage-mount.zsh", "usr/share/zsh/functions/Completion/Debian/", "644"],
|
||||
["../target/rage.1.gz", "usr/share/man/man1/", "644"],
|
||||
["../target/rage-keygen.1.gz", "usr/share/man/man1/", "644"],
|
||||
["../target/rage-mount.1.gz", "usr/share/man/man1/", "644"],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue