Update george_whewell_cv.tex #7
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: build | |
on: [push] | |
permissions: | |
contents: write | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v18 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- run: nix-build | |
- run: mkdir output && cp ./result/george_whewell_cv.pdf index.html output/ | |
- uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: output |