Skip to content

Commit

Permalink
update action
Browse files Browse the repository at this point in the history
  • Loading branch information
paolini committed Sep 16, 2024
1 parent fd65b10 commit 771531f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ jobs:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: compile LaTeX project
uses: xu-cheng/latex-action@v2
with:
root_file: AnalisiUno.tex
- name: upload PDF artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: AnalisiUno.pdf
path: AnalisiUno.pdf
- name: upload myaux artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: AnalisiUno.myaux
path: AnalisiUno.myaux
Expand All @@ -28,9 +28,9 @@ jobs:
if: startsWith(github.ref, 'refs/heads/')
steps:
- name: Check out repository code
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: download myaux artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: AnalisiUno.myaux
- name: make-docs
Expand All @@ -48,7 +48,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/20') # expect a tag like 2021-10-28 for releases
steps:
- name: download PDF artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: AnalisiUno.pdf
- name: create Release
Expand Down

0 comments on commit 771531f

Please sign in to comment.