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:
Jack Grigg 2020-02-09 17:53:51 +00:00
parent 5fab4f1869
commit ef9071a93a
4 changed files with 17 additions and 0 deletions

View file

@ -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:

View file

@ -9,6 +9,7 @@ cargo install cargo-deb
## Process
```
cargo run --example generate-completions
cargo run --example generate-docs
cargo deb --package rage
```

View file

@ -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

View file

@ -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"],