This commit introduces a new `collect github repos` command to the CLI. This command allows users to fetch all public repositories for a given user or organization. Key changes: - Added a new command file `cmd/collect_github_repos.go`. - Updated the documentation in `docs/index.md` to include the new command and the `collect github release` command.
17 lines
343 B
YAML
17 lines
343 B
YAML
name: mkdocs
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.11'
|
|
- run: pip install mkdocs-material
|
|
- run: mkdocs gh-deploy --force
|