[docs] Add link to stapy Nov Copilot Extensions LT slide #110
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: Publish on GitHub Pages | |
on: | |
push: | |
branches: [main] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install dependencies | |
run: | | |
python -m pip install -U pip | |
pip install -r requirements.txt | |
- name: Build slide | |
run: | | |
make revealjs | |
rm -r build/revealjs/_sources | |
- name: Publish on GitHub Pages | |
uses: ftnext/[email protected] | |
with: | |
build_dir: build/revealjs | |
github_token: ${{ secrets.GITHUB_TOKEN }} |