Deploy to GitHub Pages #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy to GitHub Pages | |
on: | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Uncacheable Apt Install | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libturbojpeg-dev | |
- name: Cacheable Apt Install | |
uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: libsndfile1-dev libopencv-dev python3-opencv | |
version: 1.0 | |
- name: Deploy Docs to GitHub Pages | |
uses: fastai/workflows/quarto-ghp@master |