Skip to content

Commit c37fcea

Browse files
committed
try to fix build failures: 'gh-issue:' or 'bpo:' must be specified in the metadata!
see also python/cpython#128875, https://github.com/python/blurb/pull/35/files
1 parent c124bbc commit c37fcea

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,15 @@ jobs:
3939
git commit -m "update python to ${{ github.event.inputs.tag_short_version }}"
4040
git tag ${{ github.event.inputs.tag_short_version }}
4141
git push
42-
git push --tag
42+
git push --tag
43+
- name: Fix build failure for cpython v3.10.16, v3.11.11, v3.12.8 and v3.13.1
44+
if: contains(fromJSON('["3.10.16", "3.11.11", "3.12.8", "3.13.1"]'), github.event.inputs.tag_short_version)
45+
run: |
46+
rem try to fix 'gh-issue:' or 'bpo:' must be specified in the metadata!
47+
rem https://github.com/python/cpython/pull/128875
48+
rem https://github.com/python/blurb/pull/35/files
49+
git cherry-pick 40a4d88a14c741172a158683c39d232c587c6f11 || echo "Cherry-pick failed. Resolve conflicts manually."
50+
shell: cmd
4351
- name: Install HTML Help Workshop as hhc.exe is need when build chm
4452
run: |
4553
rem unzip resources/html_help_workshop.zip

0 commit comments

Comments
 (0)