Skip to content

Commit c819f09

Browse files
committed
[build] fix artifact paths and git apply consistency
1 parent 62af24c commit c819f09

5 files changed

Lines changed: 2 additions & 6 deletions

File tree

.github/workflows/bazel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

.github/workflows/ci-renovate-rbe.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,9 @@ jobs:
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

.github/workflows/nightly.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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:

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ jobs:
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 }}

.github/workflows/update-documentation.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ jobs:
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"

0 commit comments

Comments
 (0)