Skip to content

Add JWT RBAC documentation #2490

Add JWT RBAC documentation

Add JWT RBAC documentation #2490

name: Links
on:
push:
branches: [ master ]
pull_request:
branches: [ '**' ]
workflow_dispatch:
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: "latest"
- name: Run hugo
run: |
cd qdrant-landing && hugo --gc -b 'http://localhost:1313' && hugo serve &
sleep 5 # wait for server to start
- name: Link Checker
id: lychee
uses: lycheeverse/[email protected]
with:
args: --max-redirects 0 --exclude '.*' --include 'http://localhost:1313/.*' qdrant-landing/public/
fail: true
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}