Skip to content

Commit

Permalink
First version of CD.
Browse files Browse the repository at this point in the history
  • Loading branch information
brtrndb committed Oct 9, 2023
1 parent fbdb8de commit a7df343
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Continuous deployment

on:
push:
branches:
- master

jobs:
build-pdf:
name: Build PDF
runs-on: ubuntu-latest
container:
image: thomasweise/docker-texlive-full:latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Build document
run: lualatex --output-format=pdf BertrandBoyer.tex

0 comments on commit a7df343

Please sign in to comment.