Skip to content

Commit 4e6a770

Browse files
committed
fixup! release: create initial Windows installer build workflow
build-git-installers: prepare for the big split of mingw-w64-git In git-for-windows/MINGW-packages#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 <johannes.schindelin@gmx.de>
1 parent f6415e4 commit 4e6a770

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-git-installers.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -350,9 +350,9 @@ jobs:
350350
eval $b/please.sh make_installers_from_mingw_w64_git --include-pdbs \
351351
--version=${{ needs.prereqs.outputs.tag_version }} \
352352
-o artifacts --${{matrix.type.name}} \
353-
--pkg=${{matrix.arch.artifact}}/mingw-w64-${{matrix.arch.toolchain}}-git-[0-9]*.tar.xz \
354-
--pkg=${{matrix.arch.artifact}}/mingw-w64-${{matrix.arch.toolchain}}-git-doc-html-[0-9]*.tar.xz &&
355-
353+
$(ls ${{matrix.arch.artifact}}/mingw-w64-${{matrix.arch.toolchain}}-*.tar.* |
354+
sed '/\.sig$/d;/archimport/d;/cvs/d;/p4/d;/gitweb/d;/doc-man/d;s/^/--pkg=/' |
355+
tr '\n' ' ') &&
356356
if test portable = '${{matrix.type.name}}' && test -n "$(git config alias.signtool)"
357357
then
358358
git signtool artifacts/PortableGit-*.exe

0 commit comments

Comments
 (0)