Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Upgrade artifact actions #5260

Merged
merged 3 commits into from
Oct 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ jobs:
run: |
python doc/print_errors.py

- name: Upload HTML documentation without artifact
uses: actions/upload-artifact@v3
- name: Upload HTML documentation
uses: actions/upload-artifact@v4
with:
name: documentation-html
path: doc/_build/html
Expand All @@ -127,7 +127,7 @@ jobs:
make -C doc pdf

- name: Upload PDF documentation
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: documentation-pdf
path: doc/_build/latex/PyAEDT-Documentation-*.pdf
Expand Down Expand Up @@ -187,9 +187,9 @@ jobs:
flags: system,solver

- name: Upload pytest test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pytest-solver-results
name: pytest-solver-windows
path: junit/test-results.xml
if: ${{ always() }}

Expand Down Expand Up @@ -245,9 +245,9 @@ jobs:
flags: system,solver

- name: Upload pytest test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pytest-solver-results
name: pytest-solver-linux
path: junit/test-results.xml
if: ${{ always() }}

Expand Down Expand Up @@ -310,9 +310,9 @@ jobs:
flags: system

- name: Upload pytest test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pytest-results
name: pytest-windows
path: junit/test-results.xml
if: ${{ always() }}

Expand Down Expand Up @@ -380,9 +380,9 @@ jobs:
flags: system,solver

- name: Upload pytest test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pytest-solver-results
name: pytest-linux
path: junit/test-results.xml
if: ${{ always() }}

Expand Down
Loading