Skip to content

Update slides with new sections and commands #7

Update slides with new sections and commands

Update slides with new sections and commands #7

Workflow file for this run

name: Deploy pages
on:
workflow_dispatch: {}
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
node-version: 'lts/*'
- name: Install dependencies
run: npm install
- name: Install slidev
run: npm add -g @slidev/cli @slidev/theme-default @slidev/theme-seriph
- name: Build
run: npm run build -- --base /binary-store-training/
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
with:
path: dist
- name: Deploy
id: deployment
uses: actions/deploy-pages@v4