Skip to content

Commit a7725e1

Browse files
authored
Artifact workflow support
1 parent 74bd9d9 commit a7725e1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/tutorials.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
env:
5252
NOTEBOOK_NAME: ${{ matrix.notebook-name }}
5353

54-
- uses: actions/upload-artifact@v3
54+
- uses: actions/upload-artifact@v4
5555
with:
5656
name: executed-${{ hashFiles(matrix.notebook-name) }}
5757
path: ${{ matrix.notebook-name }}
@@ -80,6 +80,7 @@ jobs:
8080
uses: actions/download-artifact@v4
8181
with:
8282
path: ./executed
83+
merge-multiple: true
8384

8485
- name: Move the executed notebooks to their correct locations
8586
run: find executed -name "*.ipynb" -exec cp {} docs/tutorials \;
@@ -88,7 +89,7 @@ jobs:
8889
working-directory: docs
8990
run: make dirhtml
9091

91-
- uses: actions/upload-artifact@v3
92+
- uses: actions/upload-artifact@v4
9293
with:
9394
name: docs
9495
path: docs/_build/dirhtml

0 commit comments

Comments
 (0)