providers/ldap: fix global search_full_directory permission not being… #3639
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: authentik-publish-source-docs | |
on: | |
push: | |
branches: | |
- main | |
env: | |
POSTGRES_DB: authentik | |
POSTGRES_USER: authentik | |
POSTGRES_PASSWORD: "EK-5jnKfjrGRm<77" | |
jobs: | |
publish-source-docs: | |
runs-on: ubuntu-latest | |
timeout-minutes: 120 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup authentik env | |
uses: ./.github/actions/setup | |
- name: generate docs | |
run: | | |
poetry run make migrate | |
poetry run ak build_source_docs | |
- name: Publish | |
uses: netlify/actions/cli@master | |
with: | |
args: deploy --dir=source_docs --prod | |
env: | |
NETLIFY_SITE_ID: eb246b7b-1d83-4f69-89f7-01a936b4ca59 | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} |