This commit is contained in:
parent
e33b6bb4ba
commit
bcc3afe9f1
1 changed files with 3 additions and 9 deletions
|
|
@ -5,22 +5,16 @@ on: [push]
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container:
|
|
||||||
image: thomasweise/docker-texlive-full
|
|
||||||
options: --user root -w /doc
|
|
||||||
volumes:
|
|
||||||
- ${{ github.workspace }}:/doc
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
working-directory: /doc
|
run: |
|
||||||
run: make
|
docker run --rm -w /doc -v $PWD:/doc thomasweise/docker-texlive-full make
|
||||||
|
|
||||||
- name: Upload PDF
|
- name: Upload PDF
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: resume
|
name: resume
|
||||||
path: /doc/examples/resume_jm_tremblay*.pdf
|
path: examples/resume_jm_tremblay*.pdf
|
||||||
Loading…
Reference in a new issue