Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 441 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 441 Bytes

yardang

yardang documentation builder action.

.github/workflows/docs.yml:

name: Docs
on:
  push:
    branches: ["main"]
    tags: ["v*"]
    paths-ignore: ["LICENSE", "README.md"]

permissions:
    contents: write

jobs:
  docs:
    runs-on: ubuntu-latest
    steps:
      - uses: actions-ext/yardang@main
        with:
          token: ${{ secrets.GITHUB_TOKEN }}