Skip to content

Merge pull request #3 from lewisay/master #31

Merge pull request #3 from lewisay/master

Merge pull request #3 from lewisay/master #31

Workflow file for this run

name: build_docs
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
go run ./cmd/gen-docs/docs.go
cp ./docs/fastget.md ./docs/index.md
git config user.name github-actions
git config user.email [email protected]
git add docs
git commit -m "docs update: latest" || echo "No document(s) updates found!"
git push