Skip to content

Commit e28c52c

Browse files
committed
[ci] Downloading all downloaded artifacts at once
[skip ci]
1 parent 01ed12f commit e28c52c

File tree

1 file changed

+3
-26
lines changed

1 file changed

+3
-26
lines changed

.github/workflows/update-documentation.yml

+3-26
Original file line numberDiff line numberDiff line change
@@ -199,37 +199,14 @@ jobs:
199199
git config --local user.email "selenium-ci@users.noreply.github.com"
200200
git config --local user.name "Selenium CI Bot"
201201
git checkout -b api-docs-${{ inputs.tag }}
202-
- name: Download Java patch
202+
- name: Download all patches
203203
if: needs.determine-language.outputs.language == 'all' || needs.determine-language.outputs.language == 'java'
204204
uses: actions/download-artifact@v4
205205
with:
206-
name: java-docs-patch
207-
path: patches/
208-
- name: Download Ruby patch
209-
if: needs.determine-language.outputs.language == 'all' || needs.determine-language.outputs.language == 'ruby'
210-
uses: actions/download-artifact@v4
211-
with:
212-
name: ruby-docs-patch
213-
path: patches/
214-
- name: Download Python patch
215-
if: needs.determine-language.outputs.language == 'all' || needs.determine-language.outputs.language == 'python'
216-
uses: actions/download-artifact@v4
217-
with:
218-
name: python-docs-patch
219-
path: patches/
220-
- name: Download .NET patch
221-
if: needs.determine-language.outputs.language == 'all' || needs.determine-language.outputs.language == 'dotnet'
222-
uses: actions/download-artifact@v4
223-
with:
224-
name: dotnet-docs-patch
225-
path: patches/
226-
- name: Download Node patch
227-
if: needs.determine-language.outputs.language == 'all' || needs.determine-language.outputs.language == 'node'
228-
uses: actions/download-artifact@v4
229-
with:
230-
name: node-docs-patch
231206
path: patches/
232207
merge-multiple: true
208+
- name: Show downloaded patches
209+
run: ls -lah patches/
233210
- name: Apply patches
234211
run: |
235212
for patch in patches/*.patch; do

0 commit comments

Comments
 (0)