We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 207496c commit f7b63cbCopy full SHA for f7b63cb
.github/workflows/ci.yml
@@ -10,8 +10,15 @@ jobs:
10
packages: write
11
steps:
12
- uses: actions/checkout@v4
13
+ - name: Get current date
14
+ id: date
15
+ run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
16
- uses: xu-cheng/latex-action@v3
17
with:
18
root_file: tex/document.tex
19
args: -pdf -file-line-error -halt-on-error -interaction=nonstopmode
-
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