Skip to content

More details on the 2023 news slides #42

More details on the 2023 news slides

More details on the 2023 news slides #42

Workflow file for this run

name: Publish the website
on:
push:
branches:
- main
jobs:
build-deploy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: sudo apt-get install -y pandoc
- name: Build the website
run: |
./build.sh
cd lectures
./build.sh
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: ./build/
force_orphan: true