Encode new slide images. #5
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 Demo Notebook | |
on: | |
push: | |
branches: ["main"] | |
workflow_dispatch: | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code. | |
uses: actions/checkout@v3 | |
- name: Check environment. | |
run: | | |
ls -ltra | |
python --version | |
pip --version | |
- name: Install dependencies. | |
run: | | |
pip install -r requirements.txt | |
- name: Build presentations. | |
run: | | |
npm install -g @marp-team/marp-cli | |
python scripts/marp.py | |
- name: Run python script. | |
run: | | |
mkdocs build | |
- name: Package site. | |
uses: actions/upload-artifact@v4 | |
with: | |
name: notebook-site | |
path: | | |
site | |
deploy: | |
needs: build | |
runs-on: ubuntu-latest | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: Download a single artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: notebook-site | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: '.' | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |