mirror of
https://github.com/moderncv/moderncv.git
synced 2026-02-06 10:05:19 +01:00
Update GitHub actions
Update actions/checkout and actions/upload-artifact from v2 to v3 The v2 versions were Node.js 12 actions, which have been depreciated in favor of Node.js 16 actions
This commit is contained in:
parent
876d7884f2
commit
6e315221ce
1 changed files with 3 additions and 3 deletions
6
.github/workflows/build-pdf.yml
vendored
6
.github/workflows/build-pdf.yml
vendored
|
|
@ -16,20 +16,20 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Build pdf
|
- name: Build pdf
|
||||||
run: latexmk -pdflua ./template.tex
|
run: latexmk -pdflua ./template.tex
|
||||||
|
|
||||||
- name: Upload pdf
|
- name: Upload pdf
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: template.pdf
|
name: template.pdf
|
||||||
path: ./template.pdf
|
path: ./template.pdf
|
||||||
|
|
||||||
- name: Upload log
|
- name: Upload log
|
||||||
if: ${{ always() }}
|
if: ${{ always() }}
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: template.log
|
name: template.log
|
||||||
path: ./template.log
|
path: ./template.log
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue