Skip to content

Commit 5c3a203

Browse files
committed
fix: use direct shell variables in VIProductVersion
- Replace ${VERSIONMAJOR}.${VERSIONMINOR}.${VERSIONBUILD}.${PATCH} - With $MAJOR.$MINOR.$BUILD.$PATCH - NSIS VIProductVersion needs actual numeric values, not constants
1 parent 8121aae commit 5c3a203

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ jobs:
176176
RequestExecutionLevel user
177177
178178
; Métadonnées de l'installateur
179-
VIProductVersion "${VERSIONMAJOR}.${VERSIONMINOR}.${VERSIONBUILD}.${PATCH}"
179+
VIProductVersion "$MAJOR.$MINOR.$BUILD.$PATCH"
180180
VIAddVersionKey "ProductName" "${APPNAME}"
181181
VIAddVersionKey "CompanyName" "${COMPANYNAME}"
182182
VIAddVersionKey "FileDescription" "${DESCRIPTION}"
@@ -320,7 +320,7 @@ jobs:
320320
RequestExecutionLevel admin
321321
322322
; Métadonnées de l'installateur
323-
VIProductVersion "${VERSIONMAJOR}.${VERSIONMINOR}.${VERSIONBUILD}.${PATCH}"
323+
VIProductVersion "$MAJOR.$MINOR.$BUILD.$PATCH"
324324
VIAddVersionKey "ProductName" "${APPNAME}"
325325
VIAddVersionKey "CompanyName" "${COMPANYNAME}"
326326
VIAddVersionKey "FileDescription" "${DESCRIPTION}"

0 commit comments

Comments
 (0)