Skip to content

Commit

Permalink
Update docs workflow to support deployment
Browse files Browse the repository at this point in the history
Renamed the "Build docs" step to "Deploy docs" and added the `GITHUB_TOKEN` environment variable for authentication. This ensures the workflow is correctly configured for deploying documentation.
  • Loading branch information
kkinder committed Feb 16, 2025
1 parent 913694c commit a8279c3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ jobs:
pip install poetry
poetry install --with=docs --no-interaction --no-ansi
- name: Build docs
- name: Deploy docs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config --global user.name "ci-bot"
git config --global user.email "ci-bot@puepy.dev"
Expand Down

0 comments on commit a8279c3

Please sign in to comment.