Skip to content

fix image formatting #319

fix image formatting

fix image formatting #319

Workflow file for this run

name: Publish the website
on:
push:
branches:
- master
jobs:
build-deploy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.9'
- 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