Skip to content

Commit 627a6bf

Browse files
committed
fixup! release: create initial Windows installer build workflow
Probably in yet another patch to accommodate Meson (don't you love it now?) the spaces in the `GIT-VERSION-FILE` are now gone. Where before, its contents looked somewhat like this: GIT_VERSION = 2.48.1.vfs.0.0 they now look this this (note the removed spaces): GIT_VERSION=2.48.1.vfs.0.0 Well, so here is yet another other patch to accommodate Meson, so that we can finally get a pre-release of v2.48.1.vfs.0.0 out. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent bda3f91 commit 627a6bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
# Verify tag follows rules in GIT-VERSION-GEN (i.e., matches the specified "DEF_VER" in
4747
# GIT-VERSION-FILE) and matches tag determined from trigger
4848
make GIT-VERSION-FILE
49-
test "${{ steps.tag.outputs.version }}" == "$(sed -n 's/^GIT_VERSION = //p'< GIT-VERSION-FILE)" || die "GIT-VERSION-FILE tag does not match ${{ steps.tag.outputs.name }}"
49+
test "${{ steps.tag.outputs.version }}" == "$(sed -n 's/^GIT_VERSION *= *//p'< GIT-VERSION-FILE)" || die "GIT-VERSION-FILE tag ($(cat GIT-VERSION-FILE)) does not match ${{ steps.tag.outputs.name }}"
5050
# End check prerequisites for the workflow
5151

5252
# Build Windows installers (x86_64 & aarch64; installer & portable)

0 commit comments

Comments
 (0)