Skip to content

Add Django Performance & You talk #5

Add Django Performance & You talk

Add Django Performance & You talk #5

Workflow file for this run

name: Deploy
on:
pull_request
# push:
# branches:
# - main
jobs:
deploy:
runs-on: ubuntu-latest
strategy:
matrix:
talk:
- django-perf-and-you
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 'lts/*'
- name: Install dependencies
run: cd ${{ matrix.talk }} && npm install
- name: Install slidev
run: npm i -g @slidev/cli
- name: Build
run: slidev build --base ${{ matrix.talk }}
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
destination_dir: ${{ matrix.talk }}