Skip to content

Commit

Permalink
Don't check in manpage (#2130)
Browse files Browse the repository at this point in the history
  • Loading branch information
casey committed Jun 5, 2024
1 parent 70d1e1b commit 3c40c0c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 197 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,15 @@ jobs:
id: ref-type
run: cargo run --package ref-type -- --reference ${{ github.ref }} >> $GITHUB_OUTPUT

- name: Generate Completion Scripts
- name: Generate Completion Scripts and Manpage
run: |
set -euxo pipefail
cargo build
for shell in bash elvish fish powershell zsh; do
./target/debug/just --completions $shell > completions/just.$shell
done
mkdir -p man
./target/debug/just -- --man > man/just.1
- name: Package
id: package
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
/fuzz/artifacts
/fuzz/corpus
/fuzz/target
/man
/target
/test-utilities/Cargo.lock
/test-utilities/target
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3673,7 +3673,6 @@ Release x.y.z
- Update changelog
- Update changelog contributor credits
- Update dependencies
- Update man page
- Update version references in readme
```

Expand Down
1 change: 1 addition & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ shellcheck:
shellcheck www/install.sh

man:
mkdir -p man
cargo run -- --man > man/just.1

view-man: man
Expand Down
195 changes: 0 additions & 195 deletions man/just.1

This file was deleted.

0 comments on commit 3c40c0c

Please sign in to comment.