mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-11 13:50:48 -05:00
3d62bb32c9
* Add initial documentation page using mkdocs * Test action * Add notes to mkdoc site. * Add installation guide * Add installation and config guide to mkdocs. * Add installation manual * Add image to main page * [mkdocs] Add plugin guide. * [mkdocs] Add plugin to main page and some small fixes. * Add shipped themes page * [actions] Also rebuild website on the next branch
20 lines
420 B
YAML
20 lines
420 B
YAML
name: Publish docs via GitHub Pages
|
|
on:
|
|
push:
|
|
branches:
|
|
- sphinx
|
|
- next
|
|
|
|
jobs:
|
|
build:
|
|
name: Deploy docs
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout master
|
|
uses: actions/checkout@v1
|
|
|
|
- name: Deploy docs
|
|
uses: mhausenblas/mkdocs-deploy-gh-pages@master
|
|
env:
|
|
CONFIG_FILE: mkdocs/mkdocs.yml
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|