Skip to content

fixup! fixup! fixup! fixup! Allow building all the slides at once #6

fixup! fixup! fixup! fixup! Allow building all the slides at once

fixup! fixup! fixup! fixup! Allow building all the slides at once #6

Workflow file for this run

# Based on: https://sli.dev/guide/hosting
on:
push:
branches:
- main
- gh-pages-action
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
book:
runs-on: ubuntu-latest
defaults:
run:
working-directory: book
steps:
- uses: actions/checkout@v4
- name: Install mdbook
run: |
wget "https://github.com/rust-lang/mdBook/releases/download/v0.4.40/mdbook-v0.4.40-x86_64-unknown-linux-gnu.tar.gz"
tar -xzf mdbook-v0.4.40-x86_64-unknown-linux-gnu.tar.gz
- name: Build book
run: ./mdbook build
slides:
runs-on: ubuntu-latest
defaults:
run:
working-directory: slides/
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: Install dependencies
run: npm install
- name: Build
run: npm run build --base /${{github.event.repository.name}}/ *.md
upload:
needs:
- book
- slides
runs-on: ubuntu-latest
steps:
- name: Move stuff into single folder
run: |
mkdir -p public
mv slides/dist/* public/
mv book/target/* public/
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifacts
uses: actions/upload-pages-artifact@v3
with:
path: public/
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: upload
runs-on: ubuntu-latest
name: Deploy
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4