Skip to content

feat: reverse dns

feat: reverse dns #533

Workflow file for this run

name: Docs
on:
push:
branches:
- master
pull_request:
types: [ opened, synchronize, reopened ]
jobs:
check_diff:
name: Check Generated Docs Diff
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Run make docs
env:
IONOS_USERNAME: ${{ secrets.IONOS_USERNAME }}
IONOS_PASSWORD: ${{ secrets.IONOS_PASSWORD }}
run: make docs
- name: Check for differences
run: |
if ! git diff --quiet; then
echo "There are differences in the generated documentation. Run 'make docs' to fix."
git diff
exit 1
fi