2025-02-19 11:50:13 -06:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build
|
2025-02-19 12:02:31 -06:00
|
|
|
run: |
|
|
|
|
apt update
|
|
|
|
apt install -y latexmk texlive-latex-extra texlive-fonts-extra
|
|
|
|
pdflatex resume.tex
|
2025-02-19 11:50:13 -06:00
|
|
|
- name: Save artifact
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: output
|
|
|
|
path: resume.pdf
|
|
|
|
if-no-files-found: error
|
|
|
|
retention-days: 1
|
|
|
|
|
|
|
|
deploy:
|
|
|
|
runs-on: native
|
|
|
|
needs: build
|
|
|
|
steps:
|
|
|
|
- name: Restore artifact
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: output
|
|
|
|
- name: deploy
|
|
|
|
run: cp resume.pdf /var/www/staging.thewordnerd.info/
|