You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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]>
Copy file name to clipboardExpand all lines: .github/workflows/build-git-installers.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ jobs:
46
46
# Verify tag follows rules in GIT-VERSION-GEN (i.e., matches the specified "DEF_VER" in
47
47
# GIT-VERSION-FILE) and matches tag determined from trigger
48
48
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 }}"
50
50
# End check prerequisites for the workflow
51
51
52
52
# Build Windows installers (x86_64 & aarch64; installer & portable)
0 commit comments