Skip to content

Commit 40d14c0

Browse files
authored
fix: clear out duplicate entries for bash in the GitHub release (#7103)
#7005 introduced a new part of the release process that added multiple files named `bash` in the `dist/` folder used as the basis of the GitHub Release. I believe that all file names in a GitHub Release have to be unique, which is why the recent release build failed: https://github.com/openai/codex/actions/runs/19577669780/job/56070183504 Based on the output of the **List** step, I believe these are the appropriate artifacts to delete as a quick fix.
1 parent af65666 commit 40d14c0

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/rust-release.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,14 @@ jobs:
407407
- name: List
408408
run: ls -R dist/
409409

410+
# This is a temporary fix: we should modify shell-tool-mcp.yml so these
411+
# files do not end up in dist/ in the first place.
412+
- name: Delete entries from dist/ that should not go in the release
413+
run: |
414+
rm -rf dist/shell-tool-mcp*
415+
416+
ls -R dist/
417+
410418
- name: Define release name
411419
id: release_name
412420
run: |

0 commit comments

Comments
 (0)