File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -253,7 +253,7 @@ jobs:
253253 limit-access-to-actor : false
254254 - name : Save git diff
255255 if : always() && inputs.artifact-name != '' && inputs.artifact-path == ''
256- run : git diff > changes.patch
256+ run : git diff --binary > changes.patch
257257 - name : Upload artifact
258258 if : always() && inputs.artifact-name != ''
259259 uses : actions/upload-artifact@v5
Original file line number Diff line number Diff line change 5656 - name : Apply patch and commit
5757 run : |
5858 if [ -f changes.patch ] && [ -s changes.patch ]; then
59- git apply changes.patch
59+ git apply --index changes.patch
6060 git config --local user.email "selenium-ci@users.noreply.github.com"
6161 git config --local user.name "Selenium CI Bot"
62- git add .
6362 git commit -m 'Repin dependencies'
6463 git push
6564 else
Original file line number Diff line number Diff line change @@ -192,7 +192,6 @@ jobs:
192192 uses : actions/download-artifact@v4
193193 with :
194194 name : nightly-grid
195- path : build/dist
196195 - name : Create nightly release
197196 uses : marvinpinto/action-automatic-releases@v1.2.1
198197 with :
Original file line number Diff line number Diff line change 7373 uses : actions/download-artifact@v4
7474 with :
7575 name : release-packages
76- path : build/dist
7776 - name : Delete nightly release and tag
7877 env :
7978 GH_TOKEN : ${{ secrets.SELENIUM_CI_TOKEN }}
Original file line number Diff line number Diff line change 9595 uses : actions/download-artifact@v4
9696 with :
9797 name : documentation
98- path : docs/api
9998 - name : Setup git
10099 run : |
101100 git config --local user.email "selenium-ci@users.noreply.github.com"
You can’t perform that action at this time.
0 commit comments