blob: 26f796cd9b16ea7dad406c25cb55aeafd0ccc444 (
plain) (
tree)
|
|
name: Build
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-20.04
name: Build
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: |
docker-compose build
docker-compose up
- name: PDF as artifact
uses: actions/upload-artifact@v2
with:
name: cv
path: cv/cv.pdf
- name: Clean up auxiliary files
run: sudo make clean
- name: PDF to GitHub Pages
uses: JamesIves/github-pages-deploy-action@4.1.0
with:
branch: gh-pages
folder: cv
single-commit: 1
if: github.ref == 'refs/heads/master'
|