Move CLI cheatsheet under cli-bin

This commit is contained in:
thePR0M3TH3AN
2025-05-21 13:43:25 -04:00
parent 2ca0a135fc
commit d433e1eab2
3 changed files with 3 additions and 3 deletions

View File

@@ -74,7 +74,7 @@ jobs:
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: marlin-cli-cheatsheet name: marlin-cli-cheatsheet
path: docs/cli_cheatsheet.md path: cli-bin/docs/cli_cheatsheet.md
if-no-files-found: warn if-no-files-found: warn
retention-days: 7 retention-days: 7

View File

@@ -81,7 +81,7 @@ Before a milestone is declared **shipped**:
## CLI Cheatsheet ## CLI Cheatsheet
The full command reference is generated during the build of the CLI. See The full command reference is generated during the build of the CLI. See
[docs/cli_cheatsheet.md](docs/cli_cheatsheet.md). [cli-bin/docs/cli_cheatsheet.md](cli-bin/docs/cli_cheatsheet.md).
## License ## License

View File

@@ -2,7 +2,7 @@
// //
// Build script to generate the CLI cheatsheet at compile time. It // Build script to generate the CLI cheatsheet at compile time. It
// parses `src/cli/commands.yaml` and emits a simple Markdown table of // parses `src/cli/commands.yaml` and emits a simple Markdown table of
// commands and flags to `docs/cli_cheatsheet.md`. // commands and flags to `cli-bin/docs/cli_cheatsheet.md`.
use std::{fs, path::Path}; use std::{fs, path::Path};