@@ -199,37 +199,14 @@ jobs:
199
199
git config --local user.email "selenium-ci@users.noreply.github.com"
200
200
git config --local user.name "Selenium CI Bot"
201
201
git checkout -b api-docs-${{ inputs.tag }}
202
- - name : Download Java patch
202
+ - name : Download all patches
203
203
if : needs.determine-language.outputs.language == 'all' || needs.determine-language.outputs.language == 'java'
204
204
uses : actions/download-artifact@v4
205
205
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
231
206
path : patches/
232
207
merge-multiple : true
208
+ - name : Show downloaded patches
209
+ run : ls -lah patches/
233
210
- name : Apply patches
234
211
run : |
235
212
for patch in patches/*.patch; do
0 commit comments