Skip to content

Commit b8472cc

Browse files
committed
Update actions/upload|download-artifact from v3 to v4
1 parent 1cf1ada commit b8472cc

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/deploy.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
file: "beacon-node-oapi.json"
2828
target: "deploy/releases/${{ matrix.release }}/beacon-node-oapi.json"
2929
- name: Save releases (artifact)
30-
uses: actions/upload-artifact@v3
30+
uses: actions/upload-artifact@v4
3131
with:
32-
name: releases
32+
name: releases-${{ matrix.release }}
3333
retention-days: 7
3434
path: |
3535
deploy/releases
@@ -48,10 +48,11 @@ jobs:
4848
cp index.html ./deploy
4949
cp validator-flow.md ./deploy
5050
- name: Restore releases
51-
uses: actions/download-artifact@v3
51+
uses: actions/download-artifact@v4
5252
with:
53-
name: releases
5453
path: deploy/releases
54+
pattern: releases-*
55+
merge-multiple: true
5556
- name: Bundle spec
5657
run: "swagger-cli bundle ./beacon-node-oapi.yaml -r -t yaml -o ./deploy/beacon-node-oapi.yaml"
5758
- name: Publish to Github Pages

0 commit comments

Comments
 (0)