Update deploy-gh-pages.yml #6
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: Deploy Documentation to GitHub Pages | |
on: | |
push: | |
branches: | |
- main # Trigger only on changes to the main branch | |
workflow_dispatch: # Allows manual trigger | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
pip install nbconvert | |
- name: Convert Jupyter notebooks to HTML | |
run: | | |
find misp-playbooks -name "*.ipynb" -exec jupyter nbconvert --to html {} \; | |
- name: Create index.html | |
run: | | |
mkdir -p _site | |
echo "hello" > _site/index.html | |
- name: Deploy to gh-pages branch | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./_site | |
branch: gh-pages | |
force_orphan: true # Ensure gh-pages branch only contains docs | |