fix credentials (#1758)

This commit is contained in:
Tamir Kamara
2025-10-22 14:38:33 +03:00
committed by GitHub
parent 8f68473796
commit 0f9d80f020

View File

@@ -19,15 +19,17 @@ jobs:
uses: actions/checkout@v5
with:
fetch-depth: 0 # Fetch all history for proper gh-pages deployment
persist-credentials: false
persist-credentials: true # So that the token is available for pushing
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip install -r docs/requirements-docs.txt
- name: Deploy docs
run: |
set -eux # fail on error
pip install -r docs/requirements-docs.txt
mkdocs gh-deploy