adding build action to auto build resume
Some checks are pending
Build Resume / build (push) Waiting to run
Some checks are pending
Build Resume / build (push) Waiting to run
This commit is contained in:
parent
e525d4f88e
commit
d4b6e66024
1 changed files with 25 additions and 0 deletions
25
.forgejo/workflows/build.yml
Normal file
25
.forgejo/workflows/build.yml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
name: Build Resume
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: forgejo.jmopines.com/jm/docker-texlive-full
|
||||
credentials:
|
||||
username: jm
|
||||
password: ${{ secrets.FORGEJO_PULL_TOKEN }}
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Build
|
||||
run: make
|
||||
|
||||
- name: Upload PDF
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: resume
|
||||
path: examples/resume_jm_tremblay*.pdf
|
||||
Loading…
Reference in a new issue