Skip to content

Commit f7b63cb

Browse files
committed
Publish output after CI build
Signed-off-by: Alban Dericbourg <[email protected]>
1 parent 207496c commit f7b63cb

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,15 @@ jobs:
1010
packages: write
1111
steps:
1212
- uses: actions/checkout@v4
13+
- name: Get current date
14+
id: date
15+
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
1316
- uses: xu-cheng/latex-action@v3
1417
with:
1518
root_file: tex/document.tex
1619
args: -pdf -file-line-error -halt-on-error -interaction=nonstopmode
17-
20+
- name: Upload PDF file
21+
- uses: actions/upload-artifact@v4
22+
with:
23+
name: TheCore-fr-${{ steps.date.outputs.date }}.pdf
24+
path: tex/document.pdf

0 commit comments

Comments
 (0)