From d007e4e115d2458ec68c89d5a7e0ef914f6d4c88 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Fri, 21 Nov 2025 09:35:31 +0100 Subject: [PATCH] fixup! release: create initial Windows installer build workflow build-git-installers: prepare for the big split of mingw-w64-git In https://github.com/git-for-windows/MINGW-packages/pull/172, the `mingw-w64-git` package was split into multiple packages, with the new primary package as Git for Windows is concerned being the `mingw-w64-git-for-windows-addons` one. Accommodate for that change by simply adding (almost) all of the packages that were built to the command-line via `--pkg` options, instead of hardcoding the `mingw-w64-git` and `mingw-w64-git-doc-html` one. Signed-off-by: Johannes Schindelin --- .github/workflows/build-git-installers.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-git-installers.yml b/.github/workflows/build-git-installers.yml index 9c998e7e9f371e..3eb96ecd5b77a5 100644 --- a/.github/workflows/build-git-installers.yml +++ b/.github/workflows/build-git-installers.yml @@ -350,9 +350,9 @@ jobs: eval $b/please.sh make_installers_from_mingw_w64_git --include-pdbs \ --version=${{ needs.prereqs.outputs.tag_version }} \ -o artifacts --${{matrix.type.name}} \ - --pkg=${{matrix.arch.artifact}}/mingw-w64-${{matrix.arch.toolchain}}-git-[0-9]*.tar.xz \ - --pkg=${{matrix.arch.artifact}}/mingw-w64-${{matrix.arch.toolchain}}-git-doc-html-[0-9]*.tar.xz && - + $(ls ${{matrix.arch.artifact}}/mingw-w64-${{matrix.arch.toolchain}}-*.tar.* | + sed '/\.sig$/d;/archimport/d;/cvs/d;/p4/d;/gitweb/d;/doc-man/d;s/^/--pkg=/' | + tr '\n' ' ') && if test portable = '${{matrix.type.name}}' && test -n "$(git config alias.signtool)" then git signtool artifacts/PortableGit-*.exe