File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -102,6 +102,10 @@ jobs:
102
102
run : |
103
103
copy "${{ vars.SIGNPATH_OUTPUT_DIR }}\*" inno-setup\input\
104
104
$platform = "${{ matrix.platform }}"
105
+ (Get-Content "inno-setup\Setup.iss") |
106
+ ForEach-Object { $_ -replace '1.0.0', '${{ env.RELEASE_TAG }}' } |
107
+ Set-Content "inno-setup\Setup.iss"
108
+
105
109
if ($platform -eq 'ARM64') {
106
110
(Get-Content "inno-setup\Setup.iss") |
107
111
ForEach-Object { $_ -replace 'x64compatible', 'arm64' } |
@@ -110,10 +114,6 @@ jobs:
110
114
(Get-Content "inno-setup\Setup.iss") |
111
115
ForEach-Object { $_ -replace '-x64', '-arm64' } |
112
116
Set-Content "inno-setup\Setup.iss"
113
-
114
- (Get-Content "inno-setup\Setup.iss") |
115
- ForEach-Object { $_ -replace '1.0.0', '${{ env.RELEASE_TAG }}' } |
116
- Set-Content "inno-setup\Setup.iss"
117
117
118
118
if (Test-Path "inno-setup\input\Companion\VDDSysTray.exe") {Remove-Item "inno-setup\input\Companion\VDDSysTray.exe"}
119
119
copy "inno-setup\input\Companion\arm64\VDDSysTray.exe" "inno-setup\input\Companion\"
You can’t perform that action at this time.
0 commit comments