···11# Tiny docs
2233+quick to setup, simple, minimalistic docs for your github project
44+35## How to use
46571. Enable github pages in the repo settings. Go to _SETTINGS → PAGES → SOURCE: Github Actions_
···1214on:
1315 push:
1416 branches: [main]
1515- workflow_dispatch:
16171718permissions:
1819 contents: read
1920 pages: write
2020- id-token: write
21212222jobs:
2323 docs:
2424 uses: flo-bit/tiny-docs/.github/workflows/tiny-docs.yml@v1
2525```
26262727-3. Run the workflow manually or push to the main branch, after a minute or two your docs should be live at `https://<yourusername>.github.io/<yourrepo>`.
2727+3. The workflow will run automatically when you push to the main branch, after a minute or two your docs should be live at `https://<yourusername>.github.io/<yourrepo>`.
28282929The docs will include all markdown files in the `docs/` folder of your repo as well as the `Readme.md` file.