File tree 2 files changed +9
-3
lines changed
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -31,12 +31,13 @@ jobs:
31
31
- name : Upload Pages artifact
32
32
uses : ./
33
33
with :
34
+ name : pages-artifact-${{ matrix.os }}
34
35
path : artifact
35
36
36
37
- name : Download artifact
37
- uses : actions/download-artifact@v3
38
+ uses : actions/download-artifact@v4-beta
38
39
with :
39
- name : github- pages
40
+ name : pages-artifact-${{ matrix.os }}
40
41
path : artifact2
41
42
42
43
- name : Extract artifact
Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ inputs:
14
14
description : " Duration after which artifact will expire in days."
15
15
required : false
16
16
default : " 1"
17
+ outputs :
18
+ artifact_id :
19
+ description : " The ID of the artifact that was uploaded."
20
+ value : ${{ steps.upload-artifact.outputs.artifact-id }}
17
21
runs :
18
22
using : composite
19
23
steps :
63
67
INPUT_PATH : ${{ inputs.path }}
64
68
65
69
- name : Upload artifact
66
- uses : actions/upload-artifact@v3
70
+ id : upload-artifact
71
+ uses : actions/upload-artifact@v4-beta
67
72
with :
68
73
name : ${{ inputs.name }}
69
74
path : ${{ runner.temp }}/artifact.tar
You can’t perform that action at this time.
0 commit comments