Skip to content

Commit

Permalink
pipeline fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
HYP3R00T committed May 9, 2024
1 parent 2bebef2 commit 9ac7d0d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/mkdocs_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,14 @@ jobs:
- name: Build and deploy
run: |
poetry run mkdocs build --verbose
poetry run mkdocs gh-deploy --verbose
- name: Deploy to GitHub Pages
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
git add .
git commit -m "Deploy MkDocs to GitHub Pages"
git branch -M gh-pages
git push origin gh-pages --force
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 9ac7d0d

Please sign in to comment.