Skip to content

Merge pull request #10 from Matrix86/feat/ratelimiter #73

Merge pull request #10 from Matrix86/feat/ratelimiter

Merge pull request #10 from Matrix86/feat/ratelimiter #73

Workflow file for this run

name: Update website
on:
push:
branches:
- master
paths:
- 'src_docs/**'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.75.1'
extended: true
- name: Build
run: hugo --minify -s src_docs
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
personal_token: ${{ secrets.PERSONAL_TOKEN }}
commit_message: ${{ github.event.head_commit.message }}
publish_branch: gh-pages
publish_dir: ./src_docs/public