Skip to content

tool3/docsify-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

docsify-action

github action that creates beautiful docs from your README!

Create an action from this template

Click the Use this Template and provide the new repo details for your action

Usage

docsify-action allows you to quickly create beautiful docs from your existing README file.

- uses: tool3/docsify-action@master
  with:
    github_token: ${{ secrets.GP_TOKEN }}

Options

github_token

required
Github access token

dir

destination directory
default: docs

branch

destination branch
default: master

docsify_args

extra docsify-cli arguments

commit_msg

commit message used when pushing to destination branch
default: docs update ๐Ÿ“š

Example

name: docs

on: [push]

jobs:
  bump:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@master
    - uses: tool3/docsify-action@master
      with:
        github_token: ${{ secrets.GP_TOKEN }}

Github Pages

instruct github pages to serve docs from master docs directory through your repository settings.
Now you have self updating docs ! ๐Ÿ˜„