Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update jimmctl reference doc #1535

Merged
merged 1 commit into from
Jan 28, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/publish-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

# Default doc name is documentation.md which can't be changed via flags.
- name: Generate docs
run: ./jimmctl documentation --out .
run: ./jimmctl documentation --no-index=true --out .

- name: Convert doc to reStructuredText
uses: docker://pandoc/core:3.5
Expand All @@ -36,8 +36,8 @@ jobs:
# We do this because the original doc doesn't have a top level heading.:
- name: Create final doc with title
run: |
echo "Jimmctl Reference" > jimmctl-reference.rst
echo "#################" >> jimmctl-reference.rst
echo "``jimmctl`` Reference" > jimmctl-reference.rst
echo "#####################" >> jimmctl-reference.rst
echo "" >> jimmctl-reference.rst
cat documentation.rst >> jimmctl-reference.rst

Expand Down
Loading