@@ -16,48 +16,9 @@ inputs:
16
16
required : true
17
17
type : string
18
18
workflow :
19
- description : ' Workflow name from where the artifacts are downloaded. By default, the same running workflow.'
19
+ description : ' Workflow name from where the artifacts are downloaded. By default, the current running workflow.'
20
20
required : false
21
- default : " "
22
21
type : string
23
- repo :
24
- description : ' Repository name with owner (like actions/checkout)'
25
- required : false
26
- default : ${{ github.repository }}
27
- type : string
28
- pr :
29
- description : ' Pull request number'
30
- required : false
31
- type : string
32
- commit :
33
- description : ' Commit hash'
34
- required : false
35
- type : string
36
- branch :
37
- description : ' Branch name'
38
- required : false
39
- type : string
40
- event :
41
- description : ' Event type'
42
- required : false
43
- type : string
44
- run_id :
45
- description : ' Workflow run id'
46
- required : false
47
- type : string
48
- run_number :
49
- description : ' Workflow run number'
50
- required : false
51
- type : string
52
- dry_run :
53
- description : ' Check the existence of artifact(s) without downloading'
54
- required : false
55
- type : string
56
- checkout :
57
- description : ' Whether to checkout the repository or not'
58
- default : true
59
- required : false
60
- type : boolean
61
22
62
23
runs :
63
24
using : " composite"
81
42
- name : " Download the HTML documentation artifact"
82
43
uses : dawidd6/action-download-artifact@v2
83
44
with :
84
- branch : ${{ inputs.branch }}
85
- commit : ${{ inputs.commit }}
86
- dry_run : ${{ inputs.dry_run }}
87
- event : ${{ inputs.event }}
88
45
github_token : ${{ inputs.token }}
89
46
name : ${{ inputs.doc-artifact-name }}
90
47
path : dev
91
- pr : ${{ inputs.pr }}
92
- repo : ${{ inputs.repo }}
93
- run_id : ${{ inputs.run_id }}
94
- run_number : ${{ inputs.run_number }}
95
48
workflow : ${{ inputs.workflow }}
96
49
97
50
- name : " Display structure of downloaded files"
0 commit comments