Skip to content

Commit

Permalink
ci: update actions/upload-artifact to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
Pesa committed Dec 27, 2023
1 parent 9b94626 commit 7897804
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Generate HTML pages
- name: Generate HTML
run: |
export SOURCE_DATE_EPOCH="$(git log -1 --format=%ct)"
make html
- name: Publish HTML pages
uses: actions/upload-artifact@v3
- name: Upload HTML
uses: actions/upload-artifact@v4
with:
name: ndn-packet-spec-html
path: _build/html
Expand All @@ -69,12 +69,12 @@ jobs:
texlive-latex-extra texlive-fonts-recommended tex-gyre
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Generate PDF document
- name: Generate PDF
run: |
export SOURCE_DATE_EPOCH="$(git log -1 --format=%ct)"
make latexpdf
- name: Publish PDF document
uses: actions/upload-artifact@v3
- name: Upload PDF
uses: actions/upload-artifact@v4
with:
name: ndn-packet-spec-pdf
path: _build/latex/ndn-packet-spec.pdf
Expand Down

0 comments on commit 7897804

Please sign in to comment.