build step in forgejo actian
All checks were successful
Build Resume / build (push) Successful in 3s
All checks were successful
Build Resume / build (push) Successful in 3s
This commit is contained in:
parent
e525d4f88e
commit
b9ee39dc55
1 changed files with 20 additions and 0 deletions
20
.forgejo/workflows/build.yml
Normal file
20
.forgejo/workflows/build.yml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
name: Build Resume
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: docker
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
run: git clone ${{ github.server_url }}/${{ github.repository }}.git .
|
||||
|
||||
- name: Build
|
||||
run: docker run --rm -w /doc -v $PWD:/doc thomasweise/docker-texlive-full make
|
||||
|
||||
- name: Upload PDF
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: resume
|
||||
path: examples/resume_jm_tremblay*.pdf
|
||||
Loading…
Reference in a new issue